diff --git a/grammar.js b/grammar.js index b922b8e..e6ba0cc 100644 --- a/grammar.js +++ b/grammar.js @@ -773,26 +773,26 @@ module.exports = grammar({ }, char_literal: $ => seq( - choice('L\'', '\''), + choice('L\'', 'u\'', 'U\'', 'u8\'', '\''), choice( $.escape_sequence, token.immediate(/[^\n']/) ), '\'' ), - + concatenated_string: $ => seq( $.string_literal, repeat1($.string_literal) ), string_literal: $ => seq( - choice('L"', '"'), + choice('L"', 'u"', 'U"', 'u8"', '"'), repeat(choice( token.immediate(prec(1, /[^\\"\n]+/)), $.escape_sequence )), - '"' + '"', ), escape_sequence: $ => token.immediate(seq( diff --git a/src/grammar.json b/src/grammar.json index 1999098..e9cc590 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -4905,6 +4905,18 @@ "type": "STRING", "value": "L'" }, + { + "type": "STRING", + "value": "u'" + }, + { + "type": "STRING", + "value": "U'" + }, + { + "type": "STRING", + "value": "u8'" + }, { "type": "STRING", "value": "'" @@ -4959,6 +4971,18 @@ "type": "STRING", "value": "L\"" }, + { + "type": "STRING", + "value": "u\"" + }, + { + "type": "STRING", + "value": "U\"" + }, + { + "type": "STRING", + "value": "u8\"" + }, { "type": "STRING", "value": "\"" diff --git a/src/node-types.json b/src/node-types.json index ee5e982..e896cc3 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -2893,6 +2893,14 @@ "type": "L'", "named": false }, + { + "type": "U\"", + "named": false + }, + { + "type": "U'", + "named": false + }, { "type": "[", "named": false @@ -3069,6 +3077,22 @@ "type": "typedef", "named": false }, + { + "type": "u\"", + "named": false + }, + { + "type": "u'", + "named": false + }, + { + "type": "u8\"", + "named": false + }, + { + "type": "u8'", + "named": false + }, { "type": "union", "named": false diff --git a/src/parser.c b/src/parser.c index 6b84b1e..f7119d1 100644 --- a/src/parser.c +++ b/src/parser.c @@ -7,10 +7,10 @@ #define LANGUAGE_VERSION 11 #define STATE_COUNT 1161 -#define LARGE_STATE_COUNT 68 -#define SYMBOL_COUNT 219 +#define LARGE_STATE_COUNT 361 +#define SYMBOL_COUNT 225 #define ALIAS_COUNT 3 -#define TOKEN_COUNT 105 +#define TOKEN_COUNT 111 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 24 #define MAX_ALIAS_SEQUENCE_LENGTH 9 @@ -109,134 +109,140 @@ enum { anon_sym_DASH_GT = 91, sym_number_literal = 92, anon_sym_L_SQUOTE = 93, - anon_sym_SQUOTE = 94, - aux_sym_char_literal_token1 = 95, - anon_sym_L_DQUOTE = 96, - anon_sym_DQUOTE = 97, - aux_sym_string_literal_token1 = 98, - sym_escape_sequence = 99, - sym_system_lib_string = 100, - sym_true = 101, - sym_false = 102, - sym_null = 103, - sym_comment = 104, - sym_translation_unit = 105, - sym_preproc_include = 106, - sym_preproc_def = 107, - sym_preproc_function_def = 108, - sym_preproc_params = 109, - sym_preproc_call = 110, - sym_preproc_if = 111, - sym_preproc_ifdef = 112, - sym_preproc_else = 113, - sym_preproc_elif = 114, - sym_preproc_if_in_field_declaration_list = 115, - sym_preproc_ifdef_in_field_declaration_list = 116, - sym_preproc_else_in_field_declaration_list = 117, - sym_preproc_elif_in_field_declaration_list = 118, - sym_function_definition = 119, - sym_declaration = 120, - sym_type_definition = 121, - sym__declaration_specifiers = 122, - sym_linkage_specification = 123, - sym_attribute_specifier = 124, - sym_declaration_list = 125, - sym__declarator = 126, - sym__field_declarator = 127, - sym__type_declarator = 128, - sym__abstract_declarator = 129, - sym_parenthesized_declarator = 130, - sym_parenthesized_field_declarator = 131, - sym_parenthesized_type_declarator = 132, - sym_abstract_parenthesized_declarator = 133, - sym_pointer_declarator = 134, - sym_pointer_field_declarator = 135, - sym_pointer_type_declarator = 136, - sym_abstract_pointer_declarator = 137, - sym_function_declarator = 138, - sym_function_field_declarator = 139, - sym_function_type_declarator = 140, - sym_abstract_function_declarator = 141, - sym_array_declarator = 142, - sym_array_field_declarator = 143, - sym_array_type_declarator = 144, - sym_abstract_array_declarator = 145, - sym_init_declarator = 146, - sym_compound_statement = 147, - sym_storage_class_specifier = 148, - sym_type_qualifier = 149, - sym__type_specifier = 150, - sym_sized_type_specifier = 151, - sym_enum_specifier = 152, - sym_enumerator_list = 153, - sym_struct_specifier = 154, - sym_union_specifier = 155, - sym_field_declaration_list = 156, - sym__field_declaration_list_item = 157, - sym_field_declaration = 158, - sym_bitfield_clause = 159, - sym_enumerator = 160, - sym_parameter_list = 161, - sym_parameter_declaration = 162, - sym_labeled_statement = 163, - sym_expression_statement = 164, - sym_if_statement = 165, - sym_switch_statement = 166, - sym_case_statement = 167, - sym_while_statement = 168, - sym_do_statement = 169, - sym_for_statement = 170, - sym_return_statement = 171, - sym_break_statement = 172, - sym_continue_statement = 173, - sym_goto_statement = 174, - sym__expression = 175, - sym_comma_expression = 176, - sym_conditional_expression = 177, - sym_assignment_expression = 178, - sym_pointer_expression = 179, - sym_unary_expression = 180, - sym_binary_expression = 181, - sym_update_expression = 182, - sym_cast_expression = 183, - sym_type_descriptor = 184, - sym_sizeof_expression = 185, - sym_subscript_expression = 186, - sym_call_expression = 187, - sym_argument_list = 188, - sym_field_expression = 189, - sym_compound_literal_expression = 190, - sym_parenthesized_expression = 191, - sym_initializer_list = 192, - sym_initializer_pair = 193, - sym_subscript_designator = 194, - sym_field_designator = 195, - sym_char_literal = 196, - sym_concatenated_string = 197, - sym_string_literal = 198, - sym__empty_declaration = 199, - sym_macro_type_specifier = 200, - aux_sym_translation_unit_repeat1 = 201, - aux_sym_preproc_params_repeat1 = 202, - aux_sym_preproc_if_in_field_declaration_list_repeat1 = 203, - aux_sym_declaration_repeat1 = 204, - aux_sym_type_definition_repeat1 = 205, - aux_sym_type_definition_repeat2 = 206, - aux_sym__declaration_specifiers_repeat1 = 207, - aux_sym_function_declarator_repeat1 = 208, - aux_sym_sized_type_specifier_repeat1 = 209, - aux_sym_enumerator_list_repeat1 = 210, - aux_sym_field_declaration_repeat1 = 211, - aux_sym_parameter_list_repeat1 = 212, - aux_sym_case_statement_repeat1 = 213, - aux_sym_argument_list_repeat1 = 214, - aux_sym_initializer_list_repeat1 = 215, - aux_sym_initializer_pair_repeat1 = 216, - aux_sym_concatenated_string_repeat1 = 217, - aux_sym_string_literal_repeat1 = 218, - alias_sym_field_identifier = 219, - alias_sym_statement_identifier = 220, - alias_sym_type_identifier = 221, + anon_sym_u_SQUOTE = 94, + anon_sym_U_SQUOTE = 95, + anon_sym_u8_SQUOTE = 96, + anon_sym_SQUOTE = 97, + aux_sym_char_literal_token1 = 98, + anon_sym_L_DQUOTE = 99, + anon_sym_u_DQUOTE = 100, + anon_sym_U_DQUOTE = 101, + anon_sym_u8_DQUOTE = 102, + anon_sym_DQUOTE = 103, + aux_sym_string_literal_token1 = 104, + sym_escape_sequence = 105, + sym_system_lib_string = 106, + sym_true = 107, + sym_false = 108, + sym_null = 109, + sym_comment = 110, + sym_translation_unit = 111, + sym_preproc_include = 112, + sym_preproc_def = 113, + sym_preproc_function_def = 114, + sym_preproc_params = 115, + sym_preproc_call = 116, + sym_preproc_if = 117, + sym_preproc_ifdef = 118, + sym_preproc_else = 119, + sym_preproc_elif = 120, + sym_preproc_if_in_field_declaration_list = 121, + sym_preproc_ifdef_in_field_declaration_list = 122, + sym_preproc_else_in_field_declaration_list = 123, + sym_preproc_elif_in_field_declaration_list = 124, + sym_function_definition = 125, + sym_declaration = 126, + sym_type_definition = 127, + sym__declaration_specifiers = 128, + sym_linkage_specification = 129, + sym_attribute_specifier = 130, + sym_declaration_list = 131, + sym__declarator = 132, + sym__field_declarator = 133, + sym__type_declarator = 134, + sym__abstract_declarator = 135, + sym_parenthesized_declarator = 136, + sym_parenthesized_field_declarator = 137, + sym_parenthesized_type_declarator = 138, + sym_abstract_parenthesized_declarator = 139, + sym_pointer_declarator = 140, + sym_pointer_field_declarator = 141, + sym_pointer_type_declarator = 142, + sym_abstract_pointer_declarator = 143, + sym_function_declarator = 144, + sym_function_field_declarator = 145, + sym_function_type_declarator = 146, + sym_abstract_function_declarator = 147, + sym_array_declarator = 148, + sym_array_field_declarator = 149, + sym_array_type_declarator = 150, + sym_abstract_array_declarator = 151, + sym_init_declarator = 152, + sym_compound_statement = 153, + sym_storage_class_specifier = 154, + sym_type_qualifier = 155, + sym__type_specifier = 156, + sym_sized_type_specifier = 157, + sym_enum_specifier = 158, + sym_enumerator_list = 159, + sym_struct_specifier = 160, + sym_union_specifier = 161, + sym_field_declaration_list = 162, + sym__field_declaration_list_item = 163, + sym_field_declaration = 164, + sym_bitfield_clause = 165, + sym_enumerator = 166, + sym_parameter_list = 167, + sym_parameter_declaration = 168, + sym_labeled_statement = 169, + sym_expression_statement = 170, + sym_if_statement = 171, + sym_switch_statement = 172, + sym_case_statement = 173, + sym_while_statement = 174, + sym_do_statement = 175, + sym_for_statement = 176, + sym_return_statement = 177, + sym_break_statement = 178, + sym_continue_statement = 179, + sym_goto_statement = 180, + sym__expression = 181, + sym_comma_expression = 182, + sym_conditional_expression = 183, + sym_assignment_expression = 184, + sym_pointer_expression = 185, + sym_unary_expression = 186, + sym_binary_expression = 187, + sym_update_expression = 188, + sym_cast_expression = 189, + sym_type_descriptor = 190, + sym_sizeof_expression = 191, + sym_subscript_expression = 192, + sym_call_expression = 193, + sym_argument_list = 194, + sym_field_expression = 195, + sym_compound_literal_expression = 196, + sym_parenthesized_expression = 197, + sym_initializer_list = 198, + sym_initializer_pair = 199, + sym_subscript_designator = 200, + sym_field_designator = 201, + sym_char_literal = 202, + sym_concatenated_string = 203, + sym_string_literal = 204, + sym__empty_declaration = 205, + sym_macro_type_specifier = 206, + aux_sym_translation_unit_repeat1 = 207, + aux_sym_preproc_params_repeat1 = 208, + aux_sym_preproc_if_in_field_declaration_list_repeat1 = 209, + aux_sym_declaration_repeat1 = 210, + aux_sym_type_definition_repeat1 = 211, + aux_sym_type_definition_repeat2 = 212, + aux_sym__declaration_specifiers_repeat1 = 213, + aux_sym_function_declarator_repeat1 = 214, + aux_sym_sized_type_specifier_repeat1 = 215, + aux_sym_enumerator_list_repeat1 = 216, + aux_sym_field_declaration_repeat1 = 217, + aux_sym_parameter_list_repeat1 = 218, + aux_sym_case_statement_repeat1 = 219, + aux_sym_argument_list_repeat1 = 220, + aux_sym_initializer_list_repeat1 = 221, + aux_sym_initializer_pair_repeat1 = 222, + aux_sym_concatenated_string_repeat1 = 223, + aux_sym_string_literal_repeat1 = 224, + alias_sym_field_identifier = 225, + alias_sym_statement_identifier = 226, + alias_sym_type_identifier = 227, }; static const char *ts_symbol_names[] = { @@ -334,9 +340,15 @@ static const char *ts_symbol_names[] = { [anon_sym_DASH_GT] = "->", [sym_number_literal] = "number_literal", [anon_sym_L_SQUOTE] = "L'", + [anon_sym_u_SQUOTE] = "u'", + [anon_sym_U_SQUOTE] = "U'", + [anon_sym_u8_SQUOTE] = "u8'", [anon_sym_SQUOTE] = "'", [aux_sym_char_literal_token1] = "char_literal_token1", [anon_sym_L_DQUOTE] = "L\"", + [anon_sym_u_DQUOTE] = "u\"", + [anon_sym_U_DQUOTE] = "U\"", + [anon_sym_u8_DQUOTE] = "u8\"", [anon_sym_DQUOTE] = "\"", [aux_sym_string_literal_token1] = "string_literal_token1", [sym_escape_sequence] = "escape_sequence", @@ -559,9 +571,15 @@ static TSSymbol ts_symbol_map[] = { [anon_sym_DASH_GT] = anon_sym_DASH_GT, [sym_number_literal] = sym_number_literal, [anon_sym_L_SQUOTE] = anon_sym_L_SQUOTE, + [anon_sym_u_SQUOTE] = anon_sym_u_SQUOTE, + [anon_sym_U_SQUOTE] = anon_sym_U_SQUOTE, + [anon_sym_u8_SQUOTE] = anon_sym_u8_SQUOTE, [anon_sym_SQUOTE] = anon_sym_SQUOTE, [aux_sym_char_literal_token1] = aux_sym_char_literal_token1, [anon_sym_L_DQUOTE] = anon_sym_L_DQUOTE, + [anon_sym_u_DQUOTE] = anon_sym_u_DQUOTE, + [anon_sym_U_DQUOTE] = anon_sym_U_DQUOTE, + [anon_sym_u8_DQUOTE] = anon_sym_u8_DQUOTE, [anon_sym_DQUOTE] = anon_sym_DQUOTE, [aux_sym_string_literal_token1] = aux_sym_string_literal_token1, [sym_escape_sequence] = sym_escape_sequence, @@ -1066,6 +1084,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_u_SQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_U_SQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_u8_SQUOTE] = { + .visible = true, + .named = false, + }, [anon_sym_SQUOTE] = { .visible = true, .named = false, @@ -1078,6 +1108,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_u_DQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_U_DQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_u8_DQUOTE] = { + .visible = true, + .named = false, + }, [anon_sym_DQUOTE] = { .visible = true, .named = false, @@ -1949,11 +1991,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 0: if (eof) ADVANCE(55); if (lookahead == '!') ADVANCE(133); - if (lookahead == '"') ADVANCE(182); + if (lookahead == '"') ADVANCE(188); if (lookahead == '#') ADVANCE(27); if (lookahead == '%') ADVANCE(142); if (lookahead == '&') ADVANCE(131); - if (lookahead == '\'') ADVANCE(177); + if (lookahead == '\'') ADVANCE(180); if (lookahead == '(') ADVANCE(60); if (lookahead == ')') ADVANCE(63); if (lookahead == '*') ADVANCE(113); @@ -1969,11 +2011,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '=') ADVANCE(117); if (lookahead == '>') ADVANCE(149); if (lookahead == '?') ADVANCE(119); - if (lookahead == 'L') ADVANCE(193); + if (lookahead == 'L') ADVANCE(199); + if (lookahead == 'U') ADVANCE(201); if (lookahead == '[') ADVANCE(114); if (lookahead == '\\') ADVANCE(26); if (lookahead == ']') ADVANCE(115); if (lookahead == '^') ADVANCE(146); + if (lookahead == 'u') ADVANCE(203); if (lookahead == '{') ADVANCE(110); if (lookahead == '|') ADVANCE(145); if (lookahead == '}') ADVANCE(111); @@ -1984,7 +2028,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(53) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(166); if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(195); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(207); END_STATE(); case 1: if (lookahead == '\n') ADVANCE(58); @@ -2007,23 +2051,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 3: if (lookahead == '\n') SKIP(12) - if (lookahead == '"') ADVANCE(182); - if (lookahead == '/') ADVANCE(183); + if (lookahead == '"') ADVANCE(188); + if (lookahead == '/') ADVANCE(189); if (lookahead == '\\') ADVANCE(26); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(186); - if (lookahead != 0) ADVANCE(187); + lookahead == ' ') ADVANCE(192); + if (lookahead != 0) ADVANCE(193); END_STATE(); case 4: if (lookahead == '\n') SKIP(22) - if (lookahead == '/') ADVANCE(179); - if (lookahead == '\\') ADVANCE(180); + if (lookahead == '/') ADVANCE(182); + if (lookahead == '\\') ADVANCE(183); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(178); + lookahead == ' ') ADVANCE(181); if (lookahead != 0 && - lookahead != '\'') ADVANCE(178); + lookahead != '\'') ADVANCE(181); END_STATE(); case 5: if (lookahead == '\n') ADVANCE(59); @@ -2043,11 +2087,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 7: if (lookahead == '!') ADVANCE(133); - if (lookahead == '"') ADVANCE(182); + if (lookahead == '"') ADVANCE(188); if (lookahead == '#') ADVANCE(34); if (lookahead == '%') ADVANCE(142); if (lookahead == '&') ADVANCE(131); - if (lookahead == '\'') ADVANCE(177); + if (lookahead == '\'') ADVANCE(180); if (lookahead == '(') ADVANCE(109); if (lookahead == ')') ADVANCE(63); if (lookahead == '*') ADVANCE(113); @@ -2063,10 +2107,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '=') ADVANCE(117); if (lookahead == '>') ADVANCE(149); if (lookahead == '?') ADVANCE(119); - if (lookahead == 'L') ADVANCE(193); + if (lookahead == 'L') ADVANCE(199); + if (lookahead == 'U') ADVANCE(201); if (lookahead == '[') ADVANCE(114); if (lookahead == ']') ADVANCE(115); if (lookahead == '^') ADVANCE(146); + if (lookahead == 'u') ADVANCE(203); if (lookahead == '{') ADVANCE(110); if (lookahead == '|') ADVANCE(145); if (lookahead == '}') ADVANCE(111); @@ -2078,14 +2124,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('1' <= lookahead && lookahead <= '9')) ADVANCE(166); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(195); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(207); END_STATE(); case 8: if (lookahead == '!') ADVANCE(132); - if (lookahead == '"') ADVANCE(182); + if (lookahead == '"') ADVANCE(188); if (lookahead == '#') ADVANCE(27); if (lookahead == '&') ADVANCE(130); - if (lookahead == '\'') ADVANCE(177); + if (lookahead == '\'') ADVANCE(180); if (lookahead == '(') ADVANCE(109); if (lookahead == '*') ADVANCE(112); if (lookahead == '+') ADVANCE(139); @@ -2094,7 +2140,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(15); if (lookahead == '0') ADVANCE(164); if (lookahead == ';') ADVANCE(108); - if (lookahead == 'L') ADVANCE(193); + if (lookahead == 'L') ADVANCE(199); + if (lookahead == 'U') ADVANCE(201); + if (lookahead == 'u') ADVANCE(203); if (lookahead == '{') ADVANCE(110); if (lookahead == '~') ADVANCE(134); if (lookahead == '\t' || @@ -2104,14 +2152,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('1' <= lookahead && lookahead <= '9')) ADVANCE(166); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(195); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(207); END_STATE(); case 9: if (lookahead == '!') ADVANCE(132); - if (lookahead == '"') ADVANCE(182); + if (lookahead == '"') ADVANCE(188); if (lookahead == '#') ADVANCE(29); if (lookahead == '&') ADVANCE(130); - if (lookahead == '\'') ADVANCE(177); + if (lookahead == '\'') ADVANCE(180); if (lookahead == '(') ADVANCE(109); if (lookahead == '*') ADVANCE(112); if (lookahead == '+') ADVANCE(139); @@ -2120,7 +2168,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(15); if (lookahead == '0') ADVANCE(164); if (lookahead == ';') ADVANCE(108); - if (lookahead == 'L') ADVANCE(193); + if (lookahead == 'L') ADVANCE(199); + if (lookahead == 'U') ADVANCE(201); + if (lookahead == 'u') ADVANCE(203); if (lookahead == '{') ADVANCE(110); if (lookahead == '~') ADVANCE(134); if (lookahead == '\t' || @@ -2130,11 +2180,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('1' <= lookahead && lookahead <= '9')) ADVANCE(166); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(195); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(207); END_STATE(); case 10: if (lookahead == '!') ADVANCE(23); - if (lookahead == '"') ADVANCE(182); + if (lookahead == '"') ADVANCE(188); if (lookahead == '%') ADVANCE(142); if (lookahead == '&') ADVANCE(131); if (lookahead == '(') ADVANCE(109); @@ -2151,10 +2201,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '=') ADVANCE(117); if (lookahead == '>') ADVANCE(149); if (lookahead == '?') ADVANCE(119); - if (lookahead == 'L') ADVANCE(194); + if (lookahead == 'L') ADVANCE(200); + if (lookahead == 'U') ADVANCE(202); if (lookahead == '[') ADVANCE(114); if (lookahead == ']') ADVANCE(115); if (lookahead == '^') ADVANCE(146); + if (lookahead == 'u') ADVANCE(204); if (lookahead == '|') ADVANCE(145); if (lookahead == '}') ADVANCE(111); if (lookahead == '\t' || @@ -2163,7 +2215,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(10) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(195); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(207); END_STATE(); case 11: if (lookahead == '!') ADVANCE(23); @@ -2196,10 +2248,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(11) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(195); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(207); END_STATE(); case 12: - if (lookahead == '"') ADVANCE(182); + if (lookahead == '"') ADVANCE(188); if (lookahead == '/') ADVANCE(15); if (lookahead == '\t' || lookahead == '\n' || @@ -2216,7 +2268,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(13) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(195); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(207); END_STATE(); case 14: if (lookahead == '#') ADVANCE(30); @@ -2232,15 +2284,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(14) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(195); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(207); END_STATE(); case 15: if (lookahead == '*') ADVANCE(17); - if (lookahead == '/') ADVANCE(198); + if (lookahead == '/') ADVANCE(210); END_STATE(); case 16: if (lookahead == '*') ADVANCE(16); - if (lookahead == '/') ADVANCE(196); + if (lookahead == '/') ADVANCE(208); if (lookahead != 0) ADVANCE(17); END_STATE(); case 17: @@ -2276,13 +2328,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '=') ADVANCE(148); END_STATE(); case 24: - if (lookahead == '>') ADVANCE(191); + if (lookahead == '>') ADVANCE(197); if (lookahead == '\\') ADVANCE(25); if (lookahead != 0 && lookahead != '\n') ADVANCE(24); END_STATE(); case 25: - if (lookahead == '>') ADVANCE(192); + if (lookahead == '>') ADVANCE(198); if (lookahead == '\\') ADVANCE(25); if (lookahead != 0 && lookahead != '\n') ADVANCE(24); @@ -2291,8 +2343,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'U') ADVANCE(51); if (lookahead == 'u') ADVANCE(47); if (lookahead == 'x') ADVANCE(45); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(190); - if (lookahead != 0) ADVANCE(188); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(196); + if (lookahead != 0) ADVANCE(194); END_STATE(); case 27: if (lookahead == 'd') ADVANCE(75); @@ -2377,7 +2429,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 41: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(188); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(194); END_STATE(); case 42: if (('0' <= lookahead && lookahead <= '9') || @@ -2431,17 +2483,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 52: if (lookahead != 0 && - lookahead != '\r') ADVANCE(198); - if (lookahead == '\r') ADVANCE(200); + lookahead != '\r') ADVANCE(210); + if (lookahead == '\r') ADVANCE(212); END_STATE(); case 53: if (eof) ADVANCE(55); if (lookahead == '!') ADVANCE(133); - if (lookahead == '"') ADVANCE(182); + if (lookahead == '"') ADVANCE(188); if (lookahead == '#') ADVANCE(27); if (lookahead == '%') ADVANCE(142); if (lookahead == '&') ADVANCE(131); - if (lookahead == '\'') ADVANCE(177); + if (lookahead == '\'') ADVANCE(180); if (lookahead == '(') ADVANCE(109); if (lookahead == ')') ADVANCE(63); if (lookahead == '*') ADVANCE(113); @@ -2457,10 +2509,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '=') ADVANCE(117); if (lookahead == '>') ADVANCE(149); if (lookahead == '?') ADVANCE(119); - if (lookahead == 'L') ADVANCE(193); + if (lookahead == 'L') ADVANCE(199); + if (lookahead == 'U') ADVANCE(201); if (lookahead == '[') ADVANCE(114); if (lookahead == ']') ADVANCE(115); if (lookahead == '^') ADVANCE(146); + if (lookahead == 'u') ADVANCE(203); if (lookahead == '{') ADVANCE(110); if (lookahead == '|') ADVANCE(145); if (lookahead == '}') ADVANCE(111); @@ -2472,15 +2526,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('1' <= lookahead && lookahead <= '9')) ADVANCE(166); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(195); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(207); END_STATE(); case 54: if (eof) ADVANCE(55); if (lookahead == '!') ADVANCE(132); - if (lookahead == '"') ADVANCE(182); + if (lookahead == '"') ADVANCE(188); if (lookahead == '#') ADVANCE(31); if (lookahead == '&') ADVANCE(130); - if (lookahead == '\'') ADVANCE(177); + if (lookahead == '\'') ADVANCE(180); if (lookahead == '(') ADVANCE(109); if (lookahead == ')') ADVANCE(63); if (lookahead == '*') ADVANCE(112); @@ -2494,9 +2548,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(108); if (lookahead == '<') ADVANCE(24); if (lookahead == '=') ADVANCE(116); - if (lookahead == 'L') ADVANCE(193); + if (lookahead == 'L') ADVANCE(199); + if (lookahead == 'U') ADVANCE(201); if (lookahead == '[') ADVANCE(114); if (lookahead == ']') ADVANCE(115); + if (lookahead == 'u') ADVANCE(203); if (lookahead == '{') ADVANCE(110); if (lookahead == '}') ADVANCE(111); if (lookahead == '~') ADVANCE(134); @@ -2507,7 +2563,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('1' <= lookahead && lookahead <= '9')) ADVANCE(166); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(195); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(207); END_STATE(); case 55: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -2810,7 +2866,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') ADVANCE(17); if (lookahead == '*') ADVANCE(97); - if (lookahead == '/') ADVANCE(196); + if (lookahead == '/') ADVANCE(208); if (lookahead == '\\') ADVANCE(107); if (lookahead != 0) ADVANCE(98); END_STATE(); @@ -2844,7 +2900,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 101: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '*') ADVANCE(98); - if (lookahead == '/') ADVANCE(199); + if (lookahead == '/') ADVANCE(211); if (lookahead == '\\') ADVANCE(104); if (lookahead != 0 && lookahead != '\n') ADVANCE(102); @@ -2873,9 +2929,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_preproc_arg); if (lookahead != 0 && lookahead != '\r' && - lookahead != '\\') ADVANCE(199); - if (lookahead == '\r') ADVANCE(201); - if (lookahead == '\\') ADVANCE(197); + lookahead != '\\') ADVANCE(211); + if (lookahead == '\r') ADVANCE(213); + if (lookahead == '\\') ADVANCE(209); END_STATE(); case 106: ACCEPT_TOKEN(sym_preproc_arg); @@ -3026,7 +3082,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 141: ACCEPT_TOKEN(anon_sym_SLASH); if (lookahead == '*') ADVANCE(17); - if (lookahead == '/') ADVANCE(198); + if (lookahead == '/') ADVANCE(210); if (lookahead == '=') ADVANCE(121); END_STATE(); case 142: @@ -3352,151 +3408,222 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_L_SQUOTE); END_STATE(); case 177: - ACCEPT_TOKEN(anon_sym_SQUOTE); + ACCEPT_TOKEN(anon_sym_u_SQUOTE); END_STATE(); case 178: - ACCEPT_TOKEN(aux_sym_char_literal_token1); + ACCEPT_TOKEN(anon_sym_U_SQUOTE); END_STATE(); case 179: + ACCEPT_TOKEN(anon_sym_u8_SQUOTE); + END_STATE(); + case 180: + ACCEPT_TOKEN(anon_sym_SQUOTE); + END_STATE(); + case 181: + ACCEPT_TOKEN(aux_sym_char_literal_token1); + END_STATE(); + case 182: ACCEPT_TOKEN(aux_sym_char_literal_token1); if (lookahead == '*') ADVANCE(17); - if (lookahead == '/') ADVANCE(198); + if (lookahead == '/') ADVANCE(210); END_STATE(); - case 180: + case 183: ACCEPT_TOKEN(aux_sym_char_literal_token1); if (lookahead == 'U') ADVANCE(51); if (lookahead == 'u') ADVANCE(47); if (lookahead == 'x') ADVANCE(45); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(190); - if (lookahead != 0) ADVANCE(188); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(196); + if (lookahead != 0) ADVANCE(194); END_STATE(); - case 181: + case 184: ACCEPT_TOKEN(anon_sym_L_DQUOTE); END_STATE(); - case 182: + case 185: + ACCEPT_TOKEN(anon_sym_u_DQUOTE); + END_STATE(); + case 186: + ACCEPT_TOKEN(anon_sym_U_DQUOTE); + END_STATE(); + case 187: + ACCEPT_TOKEN(anon_sym_u8_DQUOTE); + END_STATE(); + case 188: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 183: + case 189: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(185); - if (lookahead == '/') ADVANCE(187); + if (lookahead == '*') ADVANCE(191); + if (lookahead == '/') ADVANCE(193); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(187); + lookahead != '\\') ADVANCE(193); END_STATE(); - case 184: + case 190: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(184); - if (lookahead == '/') ADVANCE(187); + if (lookahead == '*') ADVANCE(190); + if (lookahead == '/') ADVANCE(193); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(185); + lookahead != '\\') ADVANCE(191); END_STATE(); - case 185: + case 191: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(184); + if (lookahead == '*') ADVANCE(190); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(185); + lookahead != '\\') ADVANCE(191); END_STATE(); - case 186: + case 192: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '/') ADVANCE(183); + if (lookahead == '/') ADVANCE(189); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(186); + lookahead == ' ') ADVANCE(192); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(187); + lookahead != '\\') ADVANCE(193); END_STATE(); - case 187: + case 193: ACCEPT_TOKEN(aux_sym_string_literal_token1); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(187); + lookahead != '\\') ADVANCE(193); END_STATE(); - case 188: + case 194: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 189: + case 195: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(188); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(194); END_STATE(); - case 190: + case 196: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(189); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(195); END_STATE(); - case 191: + case 197: ACCEPT_TOKEN(sym_system_lib_string); END_STATE(); - case 192: + case 198: ACCEPT_TOKEN(sym_system_lib_string); - if (lookahead == '>') ADVANCE(191); + if (lookahead == '>') ADVANCE(197); if (lookahead == '\\') ADVANCE(25); if (lookahead != 0 && lookahead != '\n') ADVANCE(24); END_STATE(); - case 193: + case 199: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(181); + if (lookahead == '"') ADVANCE(184); if (lookahead == '\'') ADVANCE(176); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(195); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(207); END_STATE(); - case 194: + case 200: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(181); + if (lookahead == '"') ADVANCE(184); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(195); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(207); END_STATE(); - case 195: + case 201: ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(186); + if (lookahead == '\'') ADVANCE(178); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(195); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(207); END_STATE(); - case 196: + case 202: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(186); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(207); + END_STATE(); + case 203: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(185); + if (lookahead == '\'') ADVANCE(177); + if (lookahead == '8') ADVANCE(205); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(207); + END_STATE(); + case 204: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(185); + if (lookahead == '8') ADVANCE(206); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(207); + END_STATE(); + case 205: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(187); + if (lookahead == '\'') ADVANCE(179); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(207); + END_STATE(); + case 206: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(187); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(207); + END_STATE(); + case 207: + ACCEPT_TOKEN(sym_identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(207); + END_STATE(); + case 208: ACCEPT_TOKEN(sym_comment); END_STATE(); - case 197: + case 209: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\r') ADVANCE(199); + if (lookahead == '\r') ADVANCE(211); if (lookahead == '\\') ADVANCE(105); if (lookahead != 0 && - lookahead != '\n') ADVANCE(199); + lookahead != '\n') ADVANCE(211); END_STATE(); - case 198: + case 210: ACCEPT_TOKEN(sym_comment); if (lookahead == '\\') ADVANCE(52); if (lookahead != 0 && - lookahead != '\n') ADVANCE(198); + lookahead != '\n') ADVANCE(210); END_STATE(); - case 199: + case 211: ACCEPT_TOKEN(sym_comment); if (lookahead == '\\') ADVANCE(105); if (lookahead != 0 && - lookahead != '\n') ADVANCE(199); + lookahead != '\n') ADVANCE(211); END_STATE(); - case 200: + case 212: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\\') ADVANCE(198); + lookahead != '\\') ADVANCE(210); if (lookahead == '\\') ADVANCE(52); END_STATE(); - case 201: + case 213: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\\') ADVANCE(199); + lookahead != '\\') ADVANCE(211); if (lookahead == '\\') ADVANCE(105); END_STATE(); default: @@ -4328,12 +4455,12 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [20] = {.lex_state = 8}, [21] = {.lex_state = 54}, [22] = {.lex_state = 54}, - [23] = {.lex_state = 9}, + [23] = {.lex_state = 54}, [24] = {.lex_state = 54}, [25] = {.lex_state = 54}, [26] = {.lex_state = 54}, - [27] = {.lex_state = 9}, - [28] = {.lex_state = 54}, + [27] = {.lex_state = 54}, + [28] = {.lex_state = 9}, [29] = {.lex_state = 54}, [30] = {.lex_state = 54}, [31] = {.lex_state = 54}, @@ -4343,25 +4470,25 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [35] = {.lex_state = 54}, [36] = {.lex_state = 54}, [37] = {.lex_state = 54}, - [38] = {.lex_state = 54}, + [38] = {.lex_state = 9}, [39] = {.lex_state = 54}, - [40] = {.lex_state = 9}, + [40] = {.lex_state = 54}, [41] = {.lex_state = 54}, - [42] = {.lex_state = 54}, + [42] = {.lex_state = 9}, [43] = {.lex_state = 8}, [44] = {.lex_state = 8}, [45] = {.lex_state = 8}, [46] = {.lex_state = 8}, [47] = {.lex_state = 8}, - [48] = {.lex_state = 9}, - [49] = {.lex_state = 54}, - [50] = {.lex_state = 54}, + [48] = {.lex_state = 54}, + [49] = {.lex_state = 9}, + [50] = {.lex_state = 9}, [51] = {.lex_state = 9}, [52] = {.lex_state = 9}, [53] = {.lex_state = 9}, [54] = {.lex_state = 54}, [55] = {.lex_state = 54}, - [56] = {.lex_state = 9}, + [56] = {.lex_state = 54}, [57] = {.lex_state = 54}, [58] = {.lex_state = 54}, [59] = {.lex_state = 54}, @@ -4498,7 +4625,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [190] = {.lex_state = 8}, [191] = {.lex_state = 8}, [192] = {.lex_state = 54}, - [193] = {.lex_state = 9}, + [193] = {.lex_state = 54}, [194] = {.lex_state = 54}, [195] = {.lex_state = 54}, [196] = {.lex_state = 54}, @@ -4507,8 +4634,8 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [199] = {.lex_state = 54}, [200] = {.lex_state = 54}, [201] = {.lex_state = 54}, - [202] = {.lex_state = 54}, - [203] = {.lex_state = 54}, + [202] = {.lex_state = 9}, + [203] = {.lex_state = 9}, [204] = {.lex_state = 54}, [205] = {.lex_state = 54}, [206] = {.lex_state = 54}, @@ -4517,15 +4644,15 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [209] = {.lex_state = 54}, [210] = {.lex_state = 54}, [211] = {.lex_state = 54}, - [212] = {.lex_state = 54}, - [213] = {.lex_state = 54}, + [212] = {.lex_state = 9}, + [213] = {.lex_state = 9}, [214] = {.lex_state = 54}, - [215] = {.lex_state = 54}, + [215] = {.lex_state = 9}, [216] = {.lex_state = 54}, [217] = {.lex_state = 54}, [218] = {.lex_state = 54}, [219] = {.lex_state = 54}, - [220] = {.lex_state = 54}, + [220] = {.lex_state = 9}, [221] = {.lex_state = 54}, [222] = {.lex_state = 54}, [223] = {.lex_state = 54}, @@ -4533,33 +4660,33 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [225] = {.lex_state = 54}, [226] = {.lex_state = 54}, [227] = {.lex_state = 54}, - [228] = {.lex_state = 54}, + [228] = {.lex_state = 9}, [229] = {.lex_state = 54}, [230] = {.lex_state = 54}, [231] = {.lex_state = 54}, [232] = {.lex_state = 54}, [233] = {.lex_state = 9}, - [234] = {.lex_state = 54}, - [235] = {.lex_state = 9}, + [234] = {.lex_state = 9}, + [235] = {.lex_state = 54}, [236] = {.lex_state = 54}, [237] = {.lex_state = 54}, - [238] = {.lex_state = 9}, + [238] = {.lex_state = 54}, [239] = {.lex_state = 54}, [240] = {.lex_state = 9}, [241] = {.lex_state = 9}, [242] = {.lex_state = 54}, [243] = {.lex_state = 54}, [244] = {.lex_state = 9}, - [245] = {.lex_state = 54}, - [246] = {.lex_state = 54}, + [245] = {.lex_state = 9}, + [246] = {.lex_state = 9}, [247] = {.lex_state = 54}, - [248] = {.lex_state = 9}, - [249] = {.lex_state = 9}, + [248] = {.lex_state = 54}, + [249] = {.lex_state = 54}, [250] = {.lex_state = 54}, [251] = {.lex_state = 9}, - [252] = {.lex_state = 9}, - [253] = {.lex_state = 9}, - [254] = {.lex_state = 9}, + [252] = {.lex_state = 54}, + [253] = {.lex_state = 54}, + [254] = {.lex_state = 54}, [255] = {.lex_state = 9}, [256] = {.lex_state = 54}, [257] = {.lex_state = 9}, @@ -4577,27 +4704,27 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [269] = {.lex_state = 54}, [270] = {.lex_state = 54}, [271] = {.lex_state = 9}, - [272] = {.lex_state = 9}, - [273] = {.lex_state = 9}, + [272] = {.lex_state = 54}, + [273] = {.lex_state = 54}, [274] = {.lex_state = 54}, [275] = {.lex_state = 9}, [276] = {.lex_state = 9}, [277] = {.lex_state = 54}, - [278] = {.lex_state = 9}, + [278] = {.lex_state = 54}, [279] = {.lex_state = 9}, [280] = {.lex_state = 9}, - [281] = {.lex_state = 54}, - [282] = {.lex_state = 9}, - [283] = {.lex_state = 9}, + [281] = {.lex_state = 9}, + [282] = {.lex_state = 54}, + [283] = {.lex_state = 54}, [284] = {.lex_state = 54}, - [285] = {.lex_state = 54}, + [285] = {.lex_state = 9}, [286] = {.lex_state = 54}, [287] = {.lex_state = 54}, [288] = {.lex_state = 9}, [289] = {.lex_state = 54}, [290] = {.lex_state = 9}, [291] = {.lex_state = 9}, - [292] = {.lex_state = 54}, + [292] = {.lex_state = 9}, [293] = {.lex_state = 54}, [294] = {.lex_state = 54}, [295] = {.lex_state = 9}, @@ -4606,7 +4733,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [298] = {.lex_state = 54}, [299] = {.lex_state = 54}, [300] = {.lex_state = 54}, - [301] = {.lex_state = 54}, + [301] = {.lex_state = 9}, [302] = {.lex_state = 54}, [303] = {.lex_state = 54}, [304] = {.lex_state = 54}, @@ -4626,207 +4753,207 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [318] = {.lex_state = 54}, [319] = {.lex_state = 54}, [320] = {.lex_state = 54}, - [321] = {.lex_state = 54}, + [321] = {.lex_state = 9}, [322] = {.lex_state = 54}, [323] = {.lex_state = 9}, - [324] = {.lex_state = 54}, - [325] = {.lex_state = 54}, + [324] = {.lex_state = 9}, + [325] = {.lex_state = 9}, [326] = {.lex_state = 9}, [327] = {.lex_state = 54}, [328] = {.lex_state = 54}, [329] = {.lex_state = 9}, [330] = {.lex_state = 54}, - [331] = {.lex_state = 9}, + [331] = {.lex_state = 54}, [332] = {.lex_state = 54}, [333] = {.lex_state = 54}, - [334] = {.lex_state = 9}, - [335] = {.lex_state = 9}, + [334] = {.lex_state = 54}, + [335] = {.lex_state = 54}, [336] = {.lex_state = 54}, - [337] = {.lex_state = 54}, + [337] = {.lex_state = 9}, [338] = {.lex_state = 9}, [339] = {.lex_state = 54}, - [340] = {.lex_state = 54}, + [340] = {.lex_state = 9}, [341] = {.lex_state = 9}, [342] = {.lex_state = 9}, [343] = {.lex_state = 54}, - [344] = {.lex_state = 9}, + [344] = {.lex_state = 54}, [345] = {.lex_state = 54}, [346] = {.lex_state = 9}, [347] = {.lex_state = 54}, [348] = {.lex_state = 54}, [349] = {.lex_state = 54}, [350] = {.lex_state = 54}, - [351] = {.lex_state = 9}, - [352] = {.lex_state = 9}, + [351] = {.lex_state = 54}, + [352] = {.lex_state = 54}, [353] = {.lex_state = 9}, [354] = {.lex_state = 54}, [355] = {.lex_state = 9}, [356] = {.lex_state = 9}, [357] = {.lex_state = 54}, [358] = {.lex_state = 54}, - [359] = {.lex_state = 9}, - [360] = {.lex_state = 54}, - [361] = {.lex_state = 11}, - [362] = {.lex_state = 11}, - [363] = {.lex_state = 11}, + [359] = {.lex_state = 54}, + [360] = {.lex_state = 9}, + [361] = {.lex_state = 54}, + [362] = {.lex_state = 54}, + [363] = {.lex_state = 54}, [364] = {.lex_state = 11}, [365] = {.lex_state = 11}, - [366] = {.lex_state = 11}, + [366] = {.lex_state = 54}, [367] = {.lex_state = 11}, [368] = {.lex_state = 11}, [369] = {.lex_state = 11}, [370] = {.lex_state = 11}, [371] = {.lex_state = 11}, [372] = {.lex_state = 11}, - [373] = {.lex_state = 11}, + [373] = {.lex_state = 54}, [374] = {.lex_state = 11}, [375] = {.lex_state = 11}, [376] = {.lex_state = 11}, - [377] = {.lex_state = 11}, + [377] = {.lex_state = 54}, [378] = {.lex_state = 11}, [379] = {.lex_state = 11}, - [380] = {.lex_state = 11}, - [381] = {.lex_state = 11}, + [380] = {.lex_state = 10}, + [381] = {.lex_state = 54}, [382] = {.lex_state = 11}, - [383] = {.lex_state = 11}, - [384] = {.lex_state = 14}, + [383] = {.lex_state = 54}, + [384] = {.lex_state = 11}, [385] = {.lex_state = 11}, - [386] = {.lex_state = 10}, + [386] = {.lex_state = 11}, [387] = {.lex_state = 10}, [388] = {.lex_state = 54}, - [389] = {.lex_state = 10}, - [390] = {.lex_state = 14}, - [391] = {.lex_state = 54}, - [392] = {.lex_state = 14}, - [393] = {.lex_state = 13}, + [389] = {.lex_state = 11}, + [390] = {.lex_state = 11}, + [391] = {.lex_state = 11}, + [392] = {.lex_state = 11}, + [393] = {.lex_state = 54}, [394] = {.lex_state = 54}, - [395] = {.lex_state = 13}, - [396] = {.lex_state = 14}, - [397] = {.lex_state = 13}, - [398] = {.lex_state = 10}, - [399] = {.lex_state = 10}, + [395] = {.lex_state = 11}, + [396] = {.lex_state = 10}, + [397] = {.lex_state = 54}, + [398] = {.lex_state = 54}, + [399] = {.lex_state = 11}, [400] = {.lex_state = 54}, [401] = {.lex_state = 14}, - [402] = {.lex_state = 54}, - [403] = {.lex_state = 11}, + [402] = {.lex_state = 10}, + [403] = {.lex_state = 10}, [404] = {.lex_state = 11}, - [405] = {.lex_state = 11}, - [406] = {.lex_state = 11}, - [407] = {.lex_state = 54}, - [408] = {.lex_state = 54}, - [409] = {.lex_state = 54}, - [410] = {.lex_state = 11}, + [405] = {.lex_state = 14}, + [406] = {.lex_state = 13}, + [407] = {.lex_state = 13}, + [408] = {.lex_state = 14}, + [409] = {.lex_state = 14}, + [410] = {.lex_state = 13}, [411] = {.lex_state = 54}, [412] = {.lex_state = 54}, - [413] = {.lex_state = 11}, - [414] = {.lex_state = 11}, - [415] = {.lex_state = 11}, + [413] = {.lex_state = 54}, + [414] = {.lex_state = 54}, + [415] = {.lex_state = 54}, [416] = {.lex_state = 54}, - [417] = {.lex_state = 11}, + [417] = {.lex_state = 54}, [418] = {.lex_state = 54}, - [419] = {.lex_state = 11}, - [420] = {.lex_state = 11}, - [421] = {.lex_state = 11}, + [419] = {.lex_state = 54}, + [420] = {.lex_state = 54}, + [421] = {.lex_state = 54}, [422] = {.lex_state = 54}, - [423] = {.lex_state = 11}, - [424] = {.lex_state = 11}, - [425] = {.lex_state = 11}, - [426] = {.lex_state = 11}, - [427] = {.lex_state = 11}, - [428] = {.lex_state = 11}, + [423] = {.lex_state = 54}, + [424] = {.lex_state = 54}, + [425] = {.lex_state = 54}, + [426] = {.lex_state = 54}, + [427] = {.lex_state = 54}, + [428] = {.lex_state = 54}, [429] = {.lex_state = 54}, - [430] = {.lex_state = 11}, - [431] = {.lex_state = 11}, - [432] = {.lex_state = 11}, - [433] = {.lex_state = 11}, - [434] = {.lex_state = 11}, - [435] = {.lex_state = 11}, - [436] = {.lex_state = 11}, - [437] = {.lex_state = 11}, - [438] = {.lex_state = 11}, - [439] = {.lex_state = 11}, - [440] = {.lex_state = 11}, - [441] = {.lex_state = 11}, - [442] = {.lex_state = 11}, + [430] = {.lex_state = 54}, + [431] = {.lex_state = 54}, + [432] = {.lex_state = 54}, + [433] = {.lex_state = 54}, + [434] = {.lex_state = 54}, + [435] = {.lex_state = 54}, + [436] = {.lex_state = 54}, + [437] = {.lex_state = 54}, + [438] = {.lex_state = 54}, + [439] = {.lex_state = 54}, + [440] = {.lex_state = 54}, + [441] = {.lex_state = 54}, + [442] = {.lex_state = 54}, [443] = {.lex_state = 11}, - [444] = {.lex_state = 11}, - [445] = {.lex_state = 11}, + [444] = {.lex_state = 14}, + [445] = {.lex_state = 54}, [446] = {.lex_state = 11}, [447] = {.lex_state = 11}, [448] = {.lex_state = 11}, - [449] = {.lex_state = 54}, - [450] = {.lex_state = 54}, + [449] = {.lex_state = 11}, + [450] = {.lex_state = 11}, [451] = {.lex_state = 54}, - [452] = {.lex_state = 54}, + [452] = {.lex_state = 11}, [453] = {.lex_state = 54}, [454] = {.lex_state = 54}, - [455] = {.lex_state = 54}, + [455] = {.lex_state = 11}, [456] = {.lex_state = 54}, [457] = {.lex_state = 54}, - [458] = {.lex_state = 54}, + [458] = {.lex_state = 11}, [459] = {.lex_state = 54}, [460] = {.lex_state = 54}, [461] = {.lex_state = 54}, [462] = {.lex_state = 54}, [463] = {.lex_state = 54}, - [464] = {.lex_state = 54}, + [464] = {.lex_state = 11}, [465] = {.lex_state = 54}, - [466] = {.lex_state = 54}, + [466] = {.lex_state = 11}, [467] = {.lex_state = 54}, - [468] = {.lex_state = 54}, - [469] = {.lex_state = 54}, + [468] = {.lex_state = 11}, + [469] = {.lex_state = 11}, [470] = {.lex_state = 54}, [471] = {.lex_state = 54}, [472] = {.lex_state = 54}, [473] = {.lex_state = 54}, [474] = {.lex_state = 54}, [475] = {.lex_state = 54}, - [476] = {.lex_state = 54}, + [476] = {.lex_state = 11}, [477] = {.lex_state = 54}, [478] = {.lex_state = 54}, - [479] = {.lex_state = 54}, - [480] = {.lex_state = 54}, - [481] = {.lex_state = 54}, + [479] = {.lex_state = 11}, + [480] = {.lex_state = 11}, + [481] = {.lex_state = 11}, [482] = {.lex_state = 54}, [483] = {.lex_state = 54}, - [484] = {.lex_state = 54}, + [484] = {.lex_state = 11}, [485] = {.lex_state = 54}, [486] = {.lex_state = 54}, [487] = {.lex_state = 54}, [488] = {.lex_state = 54}, [489] = {.lex_state = 54}, - [490] = {.lex_state = 54}, + [490] = {.lex_state = 11}, [491] = {.lex_state = 54}, - [492] = {.lex_state = 54}, - [493] = {.lex_state = 54}, - [494] = {.lex_state = 54}, + [492] = {.lex_state = 11}, + [493] = {.lex_state = 11}, + [494] = {.lex_state = 11}, [495] = {.lex_state = 54}, - [496] = {.lex_state = 54}, + [496] = {.lex_state = 11}, [497] = {.lex_state = 54}, [498] = {.lex_state = 54}, [499] = {.lex_state = 54}, [500] = {.lex_state = 54}, [501] = {.lex_state = 54}, - [502] = {.lex_state = 54}, + [502] = {.lex_state = 11}, [503] = {.lex_state = 54}, [504] = {.lex_state = 54}, - [505] = {.lex_state = 54}, + [505] = {.lex_state = 11}, [506] = {.lex_state = 54}, [507] = {.lex_state = 54}, - [508] = {.lex_state = 54}, + [508] = {.lex_state = 11}, [509] = {.lex_state = 54}, [510] = {.lex_state = 54}, [511] = {.lex_state = 54}, - [512] = {.lex_state = 54}, + [512] = {.lex_state = 11}, [513] = {.lex_state = 54}, - [514] = {.lex_state = 54}, + [514] = {.lex_state = 11}, [515] = {.lex_state = 54}, [516] = {.lex_state = 54}, [517] = {.lex_state = 54}, [518] = {.lex_state = 54}, [519] = {.lex_state = 54}, [520] = {.lex_state = 54}, - [521] = {.lex_state = 54}, + [521] = {.lex_state = 11}, [522] = {.lex_state = 54}, [523] = {.lex_state = 54}, [524] = {.lex_state = 54}, @@ -4842,25 +4969,25 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [534] = {.lex_state = 54}, [535] = {.lex_state = 54}, [536] = {.lex_state = 54}, - [537] = {.lex_state = 54}, - [538] = {.lex_state = 54}, + [537] = {.lex_state = 11}, + [538] = {.lex_state = 11}, [539] = {.lex_state = 54}, [540] = {.lex_state = 54}, - [541] = {.lex_state = 54}, + [541] = {.lex_state = 11}, [542] = {.lex_state = 54}, - [543] = {.lex_state = 54}, - [544] = {.lex_state = 54}, - [545] = {.lex_state = 54}, - [546] = {.lex_state = 54}, - [547] = {.lex_state = 54}, - [548] = {.lex_state = 11}, + [543] = {.lex_state = 11}, + [544] = {.lex_state = 11}, + [545] = {.lex_state = 11}, + [546] = {.lex_state = 11}, + [547] = {.lex_state = 11}, + [548] = {.lex_state = 54}, [549] = {.lex_state = 11}, [550] = {.lex_state = 11}, [551] = {.lex_state = 11}, - [552] = {.lex_state = 14}, + [552] = {.lex_state = 11}, [553] = {.lex_state = 14}, - [554] = {.lex_state = 11}, - [555] = {.lex_state = 11}, + [554] = {.lex_state = 14}, + [555] = {.lex_state = 54}, [556] = {.lex_state = 11}, [557] = {.lex_state = 11}, [558] = {.lex_state = 11}, @@ -4871,10 +4998,10 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [563] = {.lex_state = 11}, [564] = {.lex_state = 11}, [565] = {.lex_state = 11}, - [566] = {.lex_state = 54}, + [566] = {.lex_state = 11}, [567] = {.lex_state = 11}, [568] = {.lex_state = 11}, - [569] = {.lex_state = 11}, + [569] = {.lex_state = 54}, [570] = {.lex_state = 11}, [571] = {.lex_state = 11}, [572] = {.lex_state = 11}, @@ -4971,27 +5098,27 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [663] = {.lex_state = 11}, [664] = {.lex_state = 11}, [665] = {.lex_state = 11}, - [666] = {.lex_state = 54}, + [666] = {.lex_state = 11}, [667] = {.lex_state = 11}, [668] = {.lex_state = 11}, - [669] = {.lex_state = 13}, - [670] = {.lex_state = 14}, + [669] = {.lex_state = 11}, + [670] = {.lex_state = 13}, [671] = {.lex_state = 13}, [672] = {.lex_state = 13}, - [673] = {.lex_state = 13}, - [674] = {.lex_state = 14}, - [675] = {.lex_state = 14}, - [676] = {.lex_state = 13}, + [673] = {.lex_state = 10}, + [674] = {.lex_state = 13}, + [675] = {.lex_state = 13}, + [676] = {.lex_state = 14}, [677] = {.lex_state = 13}, - [678] = {.lex_state = 13}, + [678] = {.lex_state = 10}, [679] = {.lex_state = 14}, [680] = {.lex_state = 14}, [681] = {.lex_state = 14}, [682] = {.lex_state = 14}, [683] = {.lex_state = 14}, - [684] = {.lex_state = 14}, + [684] = {.lex_state = 13}, [685] = {.lex_state = 14}, - [686] = {.lex_state = 13}, + [686] = {.lex_state = 14}, [687] = {.lex_state = 13}, [688] = {.lex_state = 14}, [689] = {.lex_state = 14}, @@ -4999,29 +5126,29 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [691] = {.lex_state = 14}, [692] = {.lex_state = 14}, [693] = {.lex_state = 14}, - [694] = {.lex_state = 13}, + [694] = {.lex_state = 10}, [695] = {.lex_state = 13}, [696] = {.lex_state = 13}, [697] = {.lex_state = 13}, [698] = {.lex_state = 13}, - [699] = {.lex_state = 14}, + [699] = {.lex_state = 13}, [700] = {.lex_state = 13}, - [701] = {.lex_state = 13}, + [701] = {.lex_state = 14}, [702] = {.lex_state = 14}, [703] = {.lex_state = 14}, [704] = {.lex_state = 13}, [705] = {.lex_state = 13}, [706] = {.lex_state = 13}, - [707] = {.lex_state = 11}, - [708] = {.lex_state = 54}, - [709] = {.lex_state = 11}, - [710] = {.lex_state = 11}, - [711] = {.lex_state = 11}, + [707] = {.lex_state = 14}, + [708] = {.lex_state = 13}, + [709] = {.lex_state = 14}, + [710] = {.lex_state = 10}, + [711] = {.lex_state = 13}, [712] = {.lex_state = 11}, [713] = {.lex_state = 11}, - [714] = {.lex_state = 10}, + [714] = {.lex_state = 11}, [715] = {.lex_state = 11}, - [716] = {.lex_state = 10}, + [716] = {.lex_state = 11}, [717] = {.lex_state = 11}, [718] = {.lex_state = 11}, [719] = {.lex_state = 11}, @@ -5029,10 +5156,10 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [721] = {.lex_state = 11}, [722] = {.lex_state = 11}, [723] = {.lex_state = 11}, - [724] = {.lex_state = 10}, + [724] = {.lex_state = 11}, [725] = {.lex_state = 11}, [726] = {.lex_state = 11}, - [727] = {.lex_state = 10}, + [727] = {.lex_state = 11}, [728] = {.lex_state = 11}, [729] = {.lex_state = 11}, [730] = {.lex_state = 11}, @@ -5085,33 +5212,33 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [777] = {.lex_state = 54}, [778] = {.lex_state = 11}, [779] = {.lex_state = 11}, - [780] = {.lex_state = 54}, - [781] = {.lex_state = 11}, + [780] = {.lex_state = 11}, + [781] = {.lex_state = 54}, [782] = {.lex_state = 11}, - [783] = {.lex_state = 11}, - [784] = {.lex_state = 54}, + [783] = {.lex_state = 54}, + [784] = {.lex_state = 11}, [785] = {.lex_state = 11}, [786] = {.lex_state = 11}, [787] = {.lex_state = 11}, [788] = {.lex_state = 11}, - [789] = {.lex_state = 54}, + [789] = {.lex_state = 11}, [790] = {.lex_state = 11}, [791] = {.lex_state = 11}, - [792] = {.lex_state = 11}, - [793] = {.lex_state = 11}, - [794] = {.lex_state = 54}, - [795] = {.lex_state = 11}, - [796] = {.lex_state = 11}, + [792] = {.lex_state = 54}, + [793] = {.lex_state = 54}, + [794] = {.lex_state = 11}, + [795] = {.lex_state = 54}, + [796] = {.lex_state = 54}, [797] = {.lex_state = 11}, - [798] = {.lex_state = 54}, + [798] = {.lex_state = 11}, [799] = {.lex_state = 11}, - [800] = {.lex_state = 11}, + [800] = {.lex_state = 54}, [801] = {.lex_state = 11}, - [802] = {.lex_state = 54}, + [802] = {.lex_state = 11}, [803] = {.lex_state = 11}, - [804] = {.lex_state = 54}, - [805] = {.lex_state = 54}, - [806] = {.lex_state = 11}, + [804] = {.lex_state = 11}, + [805] = {.lex_state = 11}, + [806] = {.lex_state = 54}, [807] = {.lex_state = 11}, [808] = {.lex_state = 11}, [809] = {.lex_state = 11}, @@ -5150,90 +5277,90 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [842] = {.lex_state = 54}, [843] = {.lex_state = 54}, [844] = {.lex_state = 54}, - [845] = {.lex_state = 0}, + [845] = {.lex_state = 54}, [846] = {.lex_state = 54}, - [847] = {.lex_state = 54}, + [847] = {.lex_state = 0}, [848] = {.lex_state = 54}, [849] = {.lex_state = 54}, [850] = {.lex_state = 54}, - [851] = {.lex_state = 54}, + [851] = {.lex_state = 0}, [852] = {.lex_state = 54}, - [853] = {.lex_state = 54}, + [853] = {.lex_state = 0}, [854] = {.lex_state = 54}, - [855] = {.lex_state = 0}, + [855] = {.lex_state = 54}, [856] = {.lex_state = 54}, - [857] = {.lex_state = 0}, - [858] = {.lex_state = 1}, + [857] = {.lex_state = 54}, + [858] = {.lex_state = 54}, [859] = {.lex_state = 54}, - [860] = {.lex_state = 1}, + [860] = {.lex_state = 54}, [861] = {.lex_state = 54}, - [862] = {.lex_state = 54}, - [863] = {.lex_state = 54}, - [864] = {.lex_state = 11}, - [865] = {.lex_state = 3}, + [862] = {.lex_state = 1}, + [863] = {.lex_state = 1}, + [864] = {.lex_state = 54}, + [865] = {.lex_state = 54}, [866] = {.lex_state = 54}, - [867] = {.lex_state = 0}, - [868] = {.lex_state = 54}, - [869] = {.lex_state = 54}, + [867] = {.lex_state = 54}, + [868] = {.lex_state = 3}, + [869] = {.lex_state = 3}, [870] = {.lex_state = 54}, - [871] = {.lex_state = 54}, - [872] = {.lex_state = 3}, - [873] = {.lex_state = 1}, + [871] = {.lex_state = 3}, + [872] = {.lex_state = 54}, + [873] = {.lex_state = 54}, [874] = {.lex_state = 54}, - [875] = {.lex_state = 54}, + [875] = {.lex_state = 1}, [876] = {.lex_state = 54}, [877] = {.lex_state = 3}, - [878] = {.lex_state = 54}, + [878] = {.lex_state = 1}, [879] = {.lex_state = 3}, - [880] = {.lex_state = 3}, - [881] = {.lex_state = 54}, + [880] = {.lex_state = 54}, + [881] = {.lex_state = 3}, [882] = {.lex_state = 3}, - [883] = {.lex_state = 3}, - [884] = {.lex_state = 1}, + [883] = {.lex_state = 1}, + [884] = {.lex_state = 3}, [885] = {.lex_state = 54}, - [886] = {.lex_state = 3}, + [886] = {.lex_state = 54}, [887] = {.lex_state = 3}, - [888] = {.lex_state = 1}, + [888] = {.lex_state = 54}, [889] = {.lex_state = 54}, - [890] = {.lex_state = 54}, - [891] = {.lex_state = 3}, + [890] = {.lex_state = 1}, + [891] = {.lex_state = 0}, [892] = {.lex_state = 54}, - [893] = {.lex_state = 3}, - [894] = {.lex_state = 54}, - [895] = {.lex_state = 1}, - [896] = {.lex_state = 3}, - [897] = {.lex_state = 54}, - [898] = {.lex_state = 54}, - [899] = {.lex_state = 3}, - [900] = {.lex_state = 54}, + [893] = {.lex_state = 54}, + [894] = {.lex_state = 11}, + [895] = {.lex_state = 3}, + [896] = {.lex_state = 54}, + [897] = {.lex_state = 3}, + [898] = {.lex_state = 3}, + [899] = {.lex_state = 54}, + [900] = {.lex_state = 3}, [901] = {.lex_state = 54}, [902] = {.lex_state = 1}, - [903] = {.lex_state = 0}, - [904] = {.lex_state = 11}, + [903] = {.lex_state = 54}, + [904] = {.lex_state = 0}, [905] = {.lex_state = 14}, [906] = {.lex_state = 0}, [907] = {.lex_state = 0}, [908] = {.lex_state = 0}, [909] = {.lex_state = 11}, [910] = {.lex_state = 0}, - [911] = {.lex_state = 0}, + [911] = {.lex_state = 11}, [912] = {.lex_state = 0}, - [913] = {.lex_state = 11}, + [913] = {.lex_state = 0}, [914] = {.lex_state = 0}, [915] = {.lex_state = 0}, [916] = {.lex_state = 0}, - [917] = {.lex_state = 54}, + [917] = {.lex_state = 0}, [918] = {.lex_state = 0}, [919] = {.lex_state = 0}, [920] = {.lex_state = 0}, - [921] = {.lex_state = 11}, + [921] = {.lex_state = 0}, [922] = {.lex_state = 0}, - [923] = {.lex_state = 0}, - [924] = {.lex_state = 0}, - [925] = {.lex_state = 11}, + [923] = {.lex_state = 11}, + [924] = {.lex_state = 11}, + [925] = {.lex_state = 0}, [926] = {.lex_state = 0}, [927] = {.lex_state = 0}, - [928] = {.lex_state = 54}, + [928] = {.lex_state = 0}, [929] = {.lex_state = 0}, [930] = {.lex_state = 0}, [931] = {.lex_state = 0}, @@ -5242,113 +5369,113 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [934] = {.lex_state = 0}, [935] = {.lex_state = 0}, [936] = {.lex_state = 0}, - [937] = {.lex_state = 0}, + [937] = {.lex_state = 54}, [938] = {.lex_state = 0}, [939] = {.lex_state = 0}, [940] = {.lex_state = 0}, [941] = {.lex_state = 0}, - [942] = {.lex_state = 0}, + [942] = {.lex_state = 11}, [943] = {.lex_state = 0}, - [944] = {.lex_state = 0}, + [944] = {.lex_state = 54}, [945] = {.lex_state = 0}, [946] = {.lex_state = 2}, - [947] = {.lex_state = 54}, + [947] = {.lex_state = 2}, [948] = {.lex_state = 54}, - [949] = {.lex_state = 54}, - [950] = {.lex_state = 2}, - [951] = {.lex_state = 54}, + [949] = {.lex_state = 0}, + [950] = {.lex_state = 54}, + [951] = {.lex_state = 0}, [952] = {.lex_state = 2}, - [953] = {.lex_state = 11}, + [953] = {.lex_state = 2}, [954] = {.lex_state = 54}, [955] = {.lex_state = 54}, - [956] = {.lex_state = 2}, - [957] = {.lex_state = 2}, - [958] = {.lex_state = 54}, + [956] = {.lex_state = 54}, + [957] = {.lex_state = 54}, + [958] = {.lex_state = 0}, [959] = {.lex_state = 54}, - [960] = {.lex_state = 0}, - [961] = {.lex_state = 2}, + [960] = {.lex_state = 54}, + [961] = {.lex_state = 11}, [962] = {.lex_state = 2}, - [963] = {.lex_state = 0}, + [963] = {.lex_state = 54}, [964] = {.lex_state = 0}, - [965] = {.lex_state = 0}, - [966] = {.lex_state = 54}, - [967] = {.lex_state = 54}, - [968] = {.lex_state = 0}, - [969] = {.lex_state = 54}, - [970] = {.lex_state = 54}, + [965] = {.lex_state = 54}, + [966] = {.lex_state = 2}, + [967] = {.lex_state = 4}, + [968] = {.lex_state = 54}, + [969] = {.lex_state = 0}, + [970] = {.lex_state = 2}, [971] = {.lex_state = 2}, - [972] = {.lex_state = 4}, + [972] = {.lex_state = 14}, [973] = {.lex_state = 2}, - [974] = {.lex_state = 0}, - [975] = {.lex_state = 54}, + [974] = {.lex_state = 2}, + [975] = {.lex_state = 2}, [976] = {.lex_state = 2}, - [977] = {.lex_state = 0}, + [977] = {.lex_state = 54}, [978] = {.lex_state = 0}, - [979] = {.lex_state = 54}, + [979] = {.lex_state = 0}, [980] = {.lex_state = 54}, - [981] = {.lex_state = 54}, - [982] = {.lex_state = 14}, - [983] = {.lex_state = 2}, - [984] = {.lex_state = 2}, - [985] = {.lex_state = 2}, - [986] = {.lex_state = 0}, - [987] = {.lex_state = 2}, - [988] = {.lex_state = 0}, + [981] = {.lex_state = 2}, + [982] = {.lex_state = 2}, + [983] = {.lex_state = 0}, + [984] = {.lex_state = 0}, + [985] = {.lex_state = 0}, + [986] = {.lex_state = 2}, + [987] = {.lex_state = 54}, + [988] = {.lex_state = 54}, [989] = {.lex_state = 2}, [990] = {.lex_state = 2}, - [991] = {.lex_state = 2}, + [991] = {.lex_state = 0}, [992] = {.lex_state = 54}, [993] = {.lex_state = 0}, - [994] = {.lex_state = 7}, + [994] = {.lex_state = 11}, [995] = {.lex_state = 0}, [996] = {.lex_state = 0}, - [997] = {.lex_state = 11}, + [997] = {.lex_state = 0}, [998] = {.lex_state = 0}, - [999] = {.lex_state = 0}, - [1000] = {.lex_state = 7}, - [1001] = {.lex_state = 7}, + [999] = {.lex_state = 11}, + [1000] = {.lex_state = 0}, + [1001] = {.lex_state = 0}, [1002] = {.lex_state = 0}, - [1003] = {.lex_state = 11}, + [1003] = {.lex_state = 0}, [1004] = {.lex_state = 0}, [1005] = {.lex_state = 0}, [1006] = {.lex_state = 0}, [1007] = {.lex_state = 0}, [1008] = {.lex_state = 0}, [1009] = {.lex_state = 0}, - [1010] = {.lex_state = 0}, + [1010] = {.lex_state = 11}, [1011] = {.lex_state = 0}, [1012] = {.lex_state = 0}, - [1013] = {.lex_state = 0}, - [1014] = {.lex_state = 11}, + [1013] = {.lex_state = 5}, + [1014] = {.lex_state = 0}, [1015] = {.lex_state = 0}, - [1016] = {.lex_state = 5}, - [1017] = {.lex_state = 6}, + [1016] = {.lex_state = 6}, + [1017] = {.lex_state = 7}, [1018] = {.lex_state = 7}, - [1019] = {.lex_state = 7}, + [1019] = {.lex_state = 0}, [1020] = {.lex_state = 0}, [1021] = {.lex_state = 0}, [1022] = {.lex_state = 0}, - [1023] = {.lex_state = 5}, - [1024] = {.lex_state = 7}, + [1023] = {.lex_state = 7}, + [1024] = {.lex_state = 5}, [1025] = {.lex_state = 7}, - [1026] = {.lex_state = 7}, + [1026] = {.lex_state = 0}, [1027] = {.lex_state = 7}, - [1028] = {.lex_state = 5}, - [1029] = {.lex_state = 7}, - [1030] = {.lex_state = 7}, + [1028] = {.lex_state = 7}, + [1029] = {.lex_state = 6}, + [1030] = {.lex_state = 11}, [1031] = {.lex_state = 5}, - [1032] = {.lex_state = 0}, - [1033] = {.lex_state = 0}, + [1032] = {.lex_state = 7}, + [1033] = {.lex_state = 7}, [1034] = {.lex_state = 0}, [1035] = {.lex_state = 0}, [1036] = {.lex_state = 0}, - [1037] = {.lex_state = 6}, - [1038] = {.lex_state = 7}, + [1037] = {.lex_state = 0}, + [1038] = {.lex_state = 0}, [1039] = {.lex_state = 0}, [1040] = {.lex_state = 0}, - [1041] = {.lex_state = 7}, + [1041] = {.lex_state = 0}, [1042] = {.lex_state = 0}, - [1043] = {.lex_state = 5}, + [1043] = {.lex_state = 0}, [1044] = {.lex_state = 7}, [1045] = {.lex_state = 5}, [1046] = {.lex_state = 0}, @@ -5357,31 +5484,31 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1049] = {.lex_state = 7}, [1050] = {.lex_state = 0}, [1051] = {.lex_state = 0}, - [1052] = {.lex_state = 7}, + [1052] = {.lex_state = 5}, [1053] = {.lex_state = 0}, - [1054] = {.lex_state = 5}, + [1054] = {.lex_state = 7}, [1055] = {.lex_state = 0}, [1056] = {.lex_state = 0}, [1057] = {.lex_state = 5}, [1058] = {.lex_state = 0}, [1059] = {.lex_state = 5}, - [1060] = {.lex_state = 5}, + [1060] = {.lex_state = 0}, [1061] = {.lex_state = 5}, - [1062] = {.lex_state = 7}, + [1062] = {.lex_state = 0}, [1063] = {.lex_state = 0}, - [1064] = {.lex_state = 0}, + [1064] = {.lex_state = 7}, [1065] = {.lex_state = 5}, - [1066] = {.lex_state = 0}, + [1066] = {.lex_state = 7}, [1067] = {.lex_state = 5}, [1068] = {.lex_state = 0}, [1069] = {.lex_state = 5}, - [1070] = {.lex_state = 0}, - [1071] = {.lex_state = 0}, + [1070] = {.lex_state = 11}, + [1071] = {.lex_state = 5}, [1072] = {.lex_state = 5}, [1073] = {.lex_state = 5}, [1074] = {.lex_state = 0}, [1075] = {.lex_state = 5}, - [1076] = {.lex_state = 11}, + [1076] = {.lex_state = 7}, [1077] = {.lex_state = 6}, [1078] = {.lex_state = 11}, [1079] = {.lex_state = 0}, @@ -5392,21 +5519,21 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1084] = {.lex_state = 0}, [1085] = {.lex_state = 7}, [1086] = {.lex_state = 7}, - [1087] = {.lex_state = 6}, - [1088] = {.lex_state = 0}, + [1087] = {.lex_state = 0}, + [1088] = {.lex_state = 7}, [1089] = {.lex_state = 6}, [1090] = {.lex_state = 11}, - [1091] = {.lex_state = 11}, + [1091] = {.lex_state = 7}, [1092] = {.lex_state = 11}, [1093] = {.lex_state = 0}, - [1094] = {.lex_state = 0}, + [1094] = {.lex_state = 5}, [1095] = {.lex_state = 0}, [1096] = {.lex_state = 0}, - [1097] = {.lex_state = 7}, + [1097] = {.lex_state = 0}, [1098] = {.lex_state = 11}, [1099] = {.lex_state = 6}, [1100] = {.lex_state = 11}, - [1101] = {.lex_state = 7}, + [1101] = {.lex_state = 5}, [1102] = {.lex_state = 0}, [1103] = {.lex_state = 54}, [1104] = {.lex_state = 11}, @@ -5415,41 +5542,41 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1107] = {.lex_state = 7}, [1108] = {.lex_state = 6}, [1109] = {.lex_state = 11}, - [1110] = {.lex_state = 0}, - [1111] = {.lex_state = 0}, + [1110] = {.lex_state = 6}, + [1111] = {.lex_state = 7}, [1112] = {.lex_state = 0}, [1113] = {.lex_state = 7}, - [1114] = {.lex_state = 7}, - [1115] = {.lex_state = 5}, + [1114] = {.lex_state = 0}, + [1115] = {.lex_state = 7}, [1116] = {.lex_state = 0}, [1117] = {.lex_state = 11}, [1118] = {.lex_state = 6}, [1119] = {.lex_state = 11}, [1120] = {.lex_state = 0}, - [1121] = {.lex_state = 0}, + [1121] = {.lex_state = 5}, [1122] = {.lex_state = 7}, [1123] = {.lex_state = 11}, - [1124] = {.lex_state = 7}, + [1124] = {.lex_state = 5}, [1125] = {.lex_state = 0}, [1126] = {.lex_state = 0}, - [1127] = {.lex_state = 5}, + [1127] = {.lex_state = 7}, [1128] = {.lex_state = 0}, - [1129] = {.lex_state = 0}, + [1129] = {.lex_state = 7}, [1130] = {.lex_state = 0}, - [1131] = {.lex_state = 0}, - [1132] = {.lex_state = 0}, - [1133] = {.lex_state = 5}, + [1131] = {.lex_state = 5}, + [1132] = {.lex_state = 7}, + [1133] = {.lex_state = 7}, [1134] = {.lex_state = 11}, [1135] = {.lex_state = 11}, [1136] = {.lex_state = 11}, [1137] = {.lex_state = 0}, [1138] = {.lex_state = 0}, [1139] = {.lex_state = 11}, - [1140] = {.lex_state = 5}, - [1141] = {.lex_state = 7}, + [1140] = {.lex_state = 0}, + [1141] = {.lex_state = 5}, [1142] = {.lex_state = 0}, [1143] = {.lex_state = 7}, - [1144] = {.lex_state = 7}, + [1144] = {.lex_state = 0}, [1145] = {.lex_state = 11}, [1146] = {.lex_state = 54}, [1147] = {.lex_state = 0}, @@ -5458,7 +5585,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1150] = {.lex_state = 7}, [1151] = {.lex_state = 11}, [1152] = {.lex_state = 0}, - [1153] = {.lex_state = 0}, + [1153] = {.lex_state = 7}, [1154] = {.lex_state = 0}, [1155] = {.lex_state = 11}, [1156] = {.lex_state = 54}, @@ -5562,8 +5689,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1), [sym_number_literal] = ACTIONS(1), [anon_sym_L_SQUOTE] = ACTIONS(1), + [anon_sym_u_SQUOTE] = ACTIONS(1), + [anon_sym_U_SQUOTE] = ACTIONS(1), + [anon_sym_u8_SQUOTE] = ACTIONS(1), [anon_sym_SQUOTE] = ACTIONS(1), [anon_sym_L_DQUOTE] = ACTIONS(1), + [anon_sym_u_DQUOTE] = ACTIONS(1), + [anon_sym_U_DQUOTE] = ACTIONS(1), + [anon_sym_u8_DQUOTE] = ACTIONS(1), [anon_sym_DQUOTE] = ACTIONS(1), [sym_escape_sequence] = ACTIONS(1), [sym_true] = ACTIONS(1), @@ -5573,61 +5706,61 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1] = { [sym_translation_unit] = STATE(1082), - [sym_preproc_include] = STATE(34), - [sym_preproc_def] = STATE(34), - [sym_preproc_function_def] = STATE(34), - [sym_preproc_call] = STATE(34), - [sym_preproc_if] = STATE(34), - [sym_preproc_ifdef] = STATE(34), - [sym_function_definition] = STATE(34), - [sym_declaration] = STATE(34), - [sym_type_definition] = STATE(34), - [sym__declaration_specifiers] = STATE(785), - [sym_linkage_specification] = STATE(34), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(34), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), - [sym__type_specifier] = STATE(739), - [sym_sized_type_specifier] = STATE(739), - [sym_enum_specifier] = STATE(739), - [sym_struct_specifier] = STATE(739), - [sym_union_specifier] = STATE(739), - [sym_labeled_statement] = STATE(34), - [sym_expression_statement] = STATE(34), - [sym_if_statement] = STATE(34), - [sym_switch_statement] = STATE(34), - [sym_case_statement] = STATE(34), - [sym_while_statement] = STATE(34), - [sym_do_statement] = STATE(34), - [sym_for_statement] = STATE(34), - [sym_return_statement] = STATE(34), - [sym_break_statement] = STATE(34), - [sym_continue_statement] = STATE(34), - [sym_goto_statement] = STATE(34), - [sym__expression] = STATE(592), + [sym_preproc_include] = STATE(35), + [sym_preproc_def] = STATE(35), + [sym_preproc_function_def] = STATE(35), + [sym_preproc_call] = STATE(35), + [sym_preproc_if] = STATE(35), + [sym_preproc_ifdef] = STATE(35), + [sym_function_definition] = STATE(35), + [sym_declaration] = STATE(35), + [sym_type_definition] = STATE(35), + [sym__declaration_specifiers] = STATE(780), + [sym_linkage_specification] = STATE(35), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(35), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), + [sym__type_specifier] = STATE(743), + [sym_sized_type_specifier] = STATE(743), + [sym_enum_specifier] = STATE(743), + [sym_struct_specifier] = STATE(743), + [sym_union_specifier] = STATE(743), + [sym_labeled_statement] = STATE(35), + [sym_expression_statement] = STATE(35), + [sym_if_statement] = STATE(35), + [sym_switch_statement] = STATE(35), + [sym_case_statement] = STATE(35), + [sym_while_statement] = STATE(35), + [sym_do_statement] = STATE(35), + [sym_for_statement] = STATE(35), + [sym_return_statement] = STATE(35), + [sym_break_statement] = STATE(35), + [sym_continue_statement] = STATE(35), + [sym_goto_statement] = STATE(35), + [sym__expression] = STATE(594), [sym_comma_expression] = STATE(1051), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(386), - [sym__empty_declaration] = STATE(34), - [sym_macro_type_specifier] = STATE(739), - [aux_sym_translation_unit_repeat1] = STATE(34), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), + [sym_conditional_expression] = STATE(594), + [sym_assignment_expression] = STATE(594), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(594), + [sym_binary_expression] = STATE(594), + [sym_update_expression] = STATE(594), + [sym_cast_expression] = STATE(594), + [sym_sizeof_expression] = STATE(594), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(594), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(594), + [sym_concatenated_string] = STATE(594), + [sym_string_literal] = STATE(380), + [sym__empty_declaration] = STATE(35), + [sym_macro_type_specifier] = STATE(743), + [aux_sym_translation_unit_repeat1] = STATE(35), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -5680,8 +5813,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(75), [sym_number_literal] = ACTIONS(77), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), @@ -5695,22 +5834,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(20), [sym_preproc_if] = STATE(20), [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1041), - [sym_preproc_elif] = STATE(1041), + [sym_preproc_else] = STATE(1113), + [sym_preproc_elif] = STATE(1113), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym__declaration_specifiers] = STATE(782), + [sym__declaration_specifiers] = STATE(788), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(568), + [sym_attribute_specifier] = STATE(570), [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), - [sym__type_specifier] = STATE(750), - [sym_sized_type_specifier] = STATE(750), - [sym_enum_specifier] = STATE(750), - [sym_struct_specifier] = STATE(750), - [sym_union_specifier] = STATE(750), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), + [sym__type_specifier] = STATE(753), + [sym_sized_type_specifier] = STATE(753), + [sym_enum_specifier] = STATE(753), + [sym_struct_specifier] = STATE(753), + [sym_union_specifier] = STATE(753), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), [sym_if_statement] = STATE(20), @@ -5723,29 +5862,29 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(598), - [sym_comma_expression] = STATE(1064), - [sym_conditional_expression] = STATE(598), - [sym_assignment_expression] = STATE(598), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(598), - [sym_binary_expression] = STATE(598), - [sym_update_expression] = STATE(598), - [sym_cast_expression] = STATE(598), - [sym_sizeof_expression] = STATE(598), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(598), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(598), - [sym_concatenated_string] = STATE(598), - [sym_string_literal] = STATE(386), + [sym__expression] = STATE(575), + [sym_comma_expression] = STATE(1080), + [sym_conditional_expression] = STATE(575), + [sym_assignment_expression] = STATE(575), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(575), + [sym_binary_expression] = STATE(575), + [sym_update_expression] = STATE(575), + [sym_cast_expression] = STATE(575), + [sym_sizeof_expression] = STATE(575), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string_literal] = STATE(380), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(750), + [sym_macro_type_specifier] = STATE(753), [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), [sym_identifier] = ACTIONS(85), [aux_sym_preproc_include_token1] = ACTIONS(87), [aux_sym_preproc_def_token1] = ACTIONS(89), @@ -5800,8 +5939,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(75), [sym_number_literal] = ACTIONS(135), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), [sym_true] = ACTIONS(137), [sym_false] = ACTIONS(137), @@ -5809,63 +5954,63 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [3] = { - [sym_preproc_include] = STATE(5), - [sym_preproc_def] = STATE(5), - [sym_preproc_function_def] = STATE(5), - [sym_preproc_call] = STATE(5), - [sym_preproc_if] = STATE(5), - [sym_preproc_ifdef] = STATE(5), - [sym_preproc_else] = STATE(1122), - [sym_preproc_elif] = STATE(1122), - [sym_function_definition] = STATE(5), - [sym_declaration] = STATE(5), - [sym_type_definition] = STATE(5), - [sym__declaration_specifiers] = STATE(782), - [sym_linkage_specification] = STATE(5), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(5), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), - [sym__type_specifier] = STATE(750), - [sym_sized_type_specifier] = STATE(750), - [sym_enum_specifier] = STATE(750), - [sym_struct_specifier] = STATE(750), - [sym_union_specifier] = STATE(750), - [sym_labeled_statement] = STATE(5), - [sym_expression_statement] = STATE(5), - [sym_if_statement] = STATE(5), - [sym_switch_statement] = STATE(5), - [sym_case_statement] = STATE(5), - [sym_while_statement] = STATE(5), - [sym_do_statement] = STATE(5), - [sym_for_statement] = STATE(5), - [sym_return_statement] = STATE(5), - [sym_break_statement] = STATE(5), - [sym_continue_statement] = STATE(5), - [sym_goto_statement] = STATE(5), - [sym__expression] = STATE(598), - [sym_comma_expression] = STATE(1064), - [sym_conditional_expression] = STATE(598), - [sym_assignment_expression] = STATE(598), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(598), - [sym_binary_expression] = STATE(598), - [sym_update_expression] = STATE(598), - [sym_cast_expression] = STATE(598), - [sym_sizeof_expression] = STATE(598), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(598), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(598), - [sym_concatenated_string] = STATE(598), - [sym_string_literal] = STATE(386), - [sym__empty_declaration] = STATE(5), - [sym_macro_type_specifier] = STATE(750), - [aux_sym_translation_unit_repeat1] = STATE(5), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), + [sym_preproc_include] = STATE(20), + [sym_preproc_def] = STATE(20), + [sym_preproc_function_def] = STATE(20), + [sym_preproc_call] = STATE(20), + [sym_preproc_if] = STATE(20), + [sym_preproc_ifdef] = STATE(20), + [sym_preproc_else] = STATE(1066), + [sym_preproc_elif] = STATE(1066), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_specifiers] = STATE(788), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(20), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), + [sym__type_specifier] = STATE(753), + [sym_sized_type_specifier] = STATE(753), + [sym_enum_specifier] = STATE(753), + [sym_struct_specifier] = STATE(753), + [sym_union_specifier] = STATE(753), + [sym_labeled_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_switch_statement] = STATE(20), + [sym_case_statement] = STATE(20), + [sym_while_statement] = STATE(20), + [sym_do_statement] = STATE(20), + [sym_for_statement] = STATE(20), + [sym_return_statement] = STATE(20), + [sym_break_statement] = STATE(20), + [sym_continue_statement] = STATE(20), + [sym_goto_statement] = STATE(20), + [sym__expression] = STATE(575), + [sym_comma_expression] = STATE(1080), + [sym_conditional_expression] = STATE(575), + [sym_assignment_expression] = STATE(575), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(575), + [sym_binary_expression] = STATE(575), + [sym_update_expression] = STATE(575), + [sym_cast_expression] = STATE(575), + [sym_sizeof_expression] = STATE(575), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string_literal] = STATE(380), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(753), + [aux_sym_translation_unit_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), [sym_identifier] = ACTIONS(85), [aux_sym_preproc_include_token1] = ACTIONS(87), [aux_sym_preproc_def_token1] = ACTIONS(89), @@ -5920,8 +6065,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(75), [sym_number_literal] = ACTIONS(135), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), [sym_true] = ACTIONS(137), [sym_false] = ACTIONS(137), @@ -5935,22 +6086,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(20), [sym_preproc_if] = STATE(20), [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1114), - [sym_preproc_elif] = STATE(1114), + [sym_preproc_else] = STATE(1064), + [sym_preproc_elif] = STATE(1064), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym__declaration_specifiers] = STATE(782), + [sym__declaration_specifiers] = STATE(788), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(568), + [sym_attribute_specifier] = STATE(570), [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), - [sym__type_specifier] = STATE(750), - [sym_sized_type_specifier] = STATE(750), - [sym_enum_specifier] = STATE(750), - [sym_struct_specifier] = STATE(750), - [sym_union_specifier] = STATE(750), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), + [sym__type_specifier] = STATE(753), + [sym_sized_type_specifier] = STATE(753), + [sym_enum_specifier] = STATE(753), + [sym_struct_specifier] = STATE(753), + [sym_union_specifier] = STATE(753), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), [sym_if_statement] = STATE(20), @@ -5963,29 +6114,29 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(598), - [sym_comma_expression] = STATE(1064), - [sym_conditional_expression] = STATE(598), - [sym_assignment_expression] = STATE(598), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(598), - [sym_binary_expression] = STATE(598), - [sym_update_expression] = STATE(598), - [sym_cast_expression] = STATE(598), - [sym_sizeof_expression] = STATE(598), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(598), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(598), - [sym_concatenated_string] = STATE(598), - [sym_string_literal] = STATE(386), + [sym__expression] = STATE(575), + [sym_comma_expression] = STATE(1080), + [sym_conditional_expression] = STATE(575), + [sym_assignment_expression] = STATE(575), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(575), + [sym_binary_expression] = STATE(575), + [sym_update_expression] = STATE(575), + [sym_cast_expression] = STATE(575), + [sym_sizeof_expression] = STATE(575), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string_literal] = STATE(380), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(750), + [sym_macro_type_specifier] = STATE(753), [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), [sym_identifier] = ACTIONS(85), [aux_sym_preproc_include_token1] = ACTIONS(87), [aux_sym_preproc_def_token1] = ACTIONS(89), @@ -6040,8 +6191,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(75), [sym_number_literal] = ACTIONS(135), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), [sym_true] = ACTIONS(137), [sym_false] = ACTIONS(137), @@ -6049,63 +6206,63 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [5] = { - [sym_preproc_include] = STATE(20), - [sym_preproc_def] = STATE(20), - [sym_preproc_function_def] = STATE(20), - [sym_preproc_call] = STATE(20), - [sym_preproc_if] = STATE(20), - [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1113), - [sym_preproc_elif] = STATE(1113), - [sym_function_definition] = STATE(20), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), - [sym__declaration_specifiers] = STATE(782), - [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), - [sym__type_specifier] = STATE(750), - [sym_sized_type_specifier] = STATE(750), - [sym_enum_specifier] = STATE(750), - [sym_struct_specifier] = STATE(750), - [sym_union_specifier] = STATE(750), - [sym_labeled_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_switch_statement] = STATE(20), - [sym_case_statement] = STATE(20), - [sym_while_statement] = STATE(20), - [sym_do_statement] = STATE(20), - [sym_for_statement] = STATE(20), - [sym_return_statement] = STATE(20), - [sym_break_statement] = STATE(20), - [sym_continue_statement] = STATE(20), - [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(598), - [sym_comma_expression] = STATE(1064), - [sym_conditional_expression] = STATE(598), - [sym_assignment_expression] = STATE(598), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(598), - [sym_binary_expression] = STATE(598), - [sym_update_expression] = STATE(598), - [sym_cast_expression] = STATE(598), - [sym_sizeof_expression] = STATE(598), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(598), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(598), - [sym_concatenated_string] = STATE(598), - [sym_string_literal] = STATE(386), - [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(750), - [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), + [sym_preproc_include] = STATE(7), + [sym_preproc_def] = STATE(7), + [sym_preproc_function_def] = STATE(7), + [sym_preproc_call] = STATE(7), + [sym_preproc_if] = STATE(7), + [sym_preproc_ifdef] = STATE(7), + [sym_preproc_else] = STATE(1129), + [sym_preproc_elif] = STATE(1129), + [sym_function_definition] = STATE(7), + [sym_declaration] = STATE(7), + [sym_type_definition] = STATE(7), + [sym__declaration_specifiers] = STATE(788), + [sym_linkage_specification] = STATE(7), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(7), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), + [sym__type_specifier] = STATE(753), + [sym_sized_type_specifier] = STATE(753), + [sym_enum_specifier] = STATE(753), + [sym_struct_specifier] = STATE(753), + [sym_union_specifier] = STATE(753), + [sym_labeled_statement] = STATE(7), + [sym_expression_statement] = STATE(7), + [sym_if_statement] = STATE(7), + [sym_switch_statement] = STATE(7), + [sym_case_statement] = STATE(7), + [sym_while_statement] = STATE(7), + [sym_do_statement] = STATE(7), + [sym_for_statement] = STATE(7), + [sym_return_statement] = STATE(7), + [sym_break_statement] = STATE(7), + [sym_continue_statement] = STATE(7), + [sym_goto_statement] = STATE(7), + [sym__expression] = STATE(575), + [sym_comma_expression] = STATE(1080), + [sym_conditional_expression] = STATE(575), + [sym_assignment_expression] = STATE(575), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(575), + [sym_binary_expression] = STATE(575), + [sym_update_expression] = STATE(575), + [sym_cast_expression] = STATE(575), + [sym_sizeof_expression] = STATE(575), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string_literal] = STATE(380), + [sym__empty_declaration] = STATE(7), + [sym_macro_type_specifier] = STATE(753), + [aux_sym_translation_unit_repeat1] = STATE(7), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), [sym_identifier] = ACTIONS(85), [aux_sym_preproc_include_token1] = ACTIONS(87), [aux_sym_preproc_def_token1] = ACTIONS(89), @@ -6160,8 +6317,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(75), [sym_number_literal] = ACTIONS(135), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), [sym_true] = ACTIONS(137), [sym_false] = ACTIONS(137), @@ -6175,22 +6338,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(2), [sym_preproc_if] = STATE(2), [sym_preproc_ifdef] = STATE(2), - [sym_preproc_else] = STATE(1052), - [sym_preproc_elif] = STATE(1052), + [sym_preproc_else] = STATE(1127), + [sym_preproc_elif] = STATE(1127), [sym_function_definition] = STATE(2), [sym_declaration] = STATE(2), [sym_type_definition] = STATE(2), - [sym__declaration_specifiers] = STATE(782), + [sym__declaration_specifiers] = STATE(788), [sym_linkage_specification] = STATE(2), - [sym_attribute_specifier] = STATE(568), + [sym_attribute_specifier] = STATE(570), [sym_compound_statement] = STATE(2), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), - [sym__type_specifier] = STATE(750), - [sym_sized_type_specifier] = STATE(750), - [sym_enum_specifier] = STATE(750), - [sym_struct_specifier] = STATE(750), - [sym_union_specifier] = STATE(750), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), + [sym__type_specifier] = STATE(753), + [sym_sized_type_specifier] = STATE(753), + [sym_enum_specifier] = STATE(753), + [sym_struct_specifier] = STATE(753), + [sym_union_specifier] = STATE(753), [sym_labeled_statement] = STATE(2), [sym_expression_statement] = STATE(2), [sym_if_statement] = STATE(2), @@ -6203,29 +6366,29 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(2), [sym_continue_statement] = STATE(2), [sym_goto_statement] = STATE(2), - [sym__expression] = STATE(598), - [sym_comma_expression] = STATE(1064), - [sym_conditional_expression] = STATE(598), - [sym_assignment_expression] = STATE(598), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(598), - [sym_binary_expression] = STATE(598), - [sym_update_expression] = STATE(598), - [sym_cast_expression] = STATE(598), - [sym_sizeof_expression] = STATE(598), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(598), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(598), - [sym_concatenated_string] = STATE(598), - [sym_string_literal] = STATE(386), + [sym__expression] = STATE(575), + [sym_comma_expression] = STATE(1080), + [sym_conditional_expression] = STATE(575), + [sym_assignment_expression] = STATE(575), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(575), + [sym_binary_expression] = STATE(575), + [sym_update_expression] = STATE(575), + [sym_cast_expression] = STATE(575), + [sym_sizeof_expression] = STATE(575), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string_literal] = STATE(380), [sym__empty_declaration] = STATE(2), - [sym_macro_type_specifier] = STATE(750), + [sym_macro_type_specifier] = STATE(753), [aux_sym_translation_unit_repeat1] = STATE(2), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), [sym_identifier] = ACTIONS(85), [aux_sym_preproc_include_token1] = ACTIONS(87), [aux_sym_preproc_def_token1] = ACTIONS(89), @@ -6280,8 +6443,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(75), [sym_number_literal] = ACTIONS(135), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), [sym_true] = ACTIONS(137), [sym_false] = ACTIONS(137), @@ -6289,63 +6458,63 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [7] = { - [sym_preproc_include] = STATE(11), - [sym_preproc_def] = STATE(11), - [sym_preproc_function_def] = STATE(11), - [sym_preproc_call] = STATE(11), - [sym_preproc_if] = STATE(11), - [sym_preproc_ifdef] = STATE(11), - [sym_preproc_else] = STATE(1047), - [sym_preproc_elif] = STATE(1047), - [sym_function_definition] = STATE(11), - [sym_declaration] = STATE(11), - [sym_type_definition] = STATE(11), - [sym__declaration_specifiers] = STATE(782), - [sym_linkage_specification] = STATE(11), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(11), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), - [sym__type_specifier] = STATE(750), - [sym_sized_type_specifier] = STATE(750), - [sym_enum_specifier] = STATE(750), - [sym_struct_specifier] = STATE(750), - [sym_union_specifier] = STATE(750), - [sym_labeled_statement] = STATE(11), - [sym_expression_statement] = STATE(11), - [sym_if_statement] = STATE(11), - [sym_switch_statement] = STATE(11), - [sym_case_statement] = STATE(11), - [sym_while_statement] = STATE(11), - [sym_do_statement] = STATE(11), - [sym_for_statement] = STATE(11), - [sym_return_statement] = STATE(11), - [sym_break_statement] = STATE(11), - [sym_continue_statement] = STATE(11), - [sym_goto_statement] = STATE(11), - [sym__expression] = STATE(598), - [sym_comma_expression] = STATE(1064), - [sym_conditional_expression] = STATE(598), - [sym_assignment_expression] = STATE(598), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(598), - [sym_binary_expression] = STATE(598), - [sym_update_expression] = STATE(598), - [sym_cast_expression] = STATE(598), - [sym_sizeof_expression] = STATE(598), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(598), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(598), - [sym_concatenated_string] = STATE(598), - [sym_string_literal] = STATE(386), - [sym__empty_declaration] = STATE(11), - [sym_macro_type_specifier] = STATE(750), - [aux_sym_translation_unit_repeat1] = STATE(11), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), + [sym_preproc_include] = STATE(20), + [sym_preproc_def] = STATE(20), + [sym_preproc_function_def] = STATE(20), + [sym_preproc_call] = STATE(20), + [sym_preproc_if] = STATE(20), + [sym_preproc_ifdef] = STATE(20), + [sym_preproc_else] = STATE(1115), + [sym_preproc_elif] = STATE(1115), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_specifiers] = STATE(788), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(20), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), + [sym__type_specifier] = STATE(753), + [sym_sized_type_specifier] = STATE(753), + [sym_enum_specifier] = STATE(753), + [sym_struct_specifier] = STATE(753), + [sym_union_specifier] = STATE(753), + [sym_labeled_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_switch_statement] = STATE(20), + [sym_case_statement] = STATE(20), + [sym_while_statement] = STATE(20), + [sym_do_statement] = STATE(20), + [sym_for_statement] = STATE(20), + [sym_return_statement] = STATE(20), + [sym_break_statement] = STATE(20), + [sym_continue_statement] = STATE(20), + [sym_goto_statement] = STATE(20), + [sym__expression] = STATE(575), + [sym_comma_expression] = STATE(1080), + [sym_conditional_expression] = STATE(575), + [sym_assignment_expression] = STATE(575), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(575), + [sym_binary_expression] = STATE(575), + [sym_update_expression] = STATE(575), + [sym_cast_expression] = STATE(575), + [sym_sizeof_expression] = STATE(575), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string_literal] = STATE(380), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(753), + [aux_sym_translation_unit_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), [sym_identifier] = ACTIONS(85), [aux_sym_preproc_include_token1] = ACTIONS(87), [aux_sym_preproc_def_token1] = ACTIONS(89), @@ -6400,8 +6569,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(75), [sym_number_literal] = ACTIONS(135), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), [sym_true] = ACTIONS(137), [sym_false] = ACTIONS(137), @@ -6409,63 +6584,63 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [8] = { - [sym_preproc_include] = STATE(18), - [sym_preproc_def] = STATE(18), - [sym_preproc_function_def] = STATE(18), - [sym_preproc_call] = STATE(18), - [sym_preproc_if] = STATE(18), - [sym_preproc_ifdef] = STATE(18), - [sym_preproc_else] = STATE(1062), - [sym_preproc_elif] = STATE(1062), - [sym_function_definition] = STATE(18), - [sym_declaration] = STATE(18), - [sym_type_definition] = STATE(18), - [sym__declaration_specifiers] = STATE(782), - [sym_linkage_specification] = STATE(18), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(18), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), - [sym__type_specifier] = STATE(750), - [sym_sized_type_specifier] = STATE(750), - [sym_enum_specifier] = STATE(750), - [sym_struct_specifier] = STATE(750), - [sym_union_specifier] = STATE(750), - [sym_labeled_statement] = STATE(18), - [sym_expression_statement] = STATE(18), - [sym_if_statement] = STATE(18), - [sym_switch_statement] = STATE(18), - [sym_case_statement] = STATE(18), - [sym_while_statement] = STATE(18), - [sym_do_statement] = STATE(18), - [sym_for_statement] = STATE(18), - [sym_return_statement] = STATE(18), - [sym_break_statement] = STATE(18), - [sym_continue_statement] = STATE(18), - [sym_goto_statement] = STATE(18), - [sym__expression] = STATE(598), - [sym_comma_expression] = STATE(1064), - [sym_conditional_expression] = STATE(598), - [sym_assignment_expression] = STATE(598), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(598), - [sym_binary_expression] = STATE(598), - [sym_update_expression] = STATE(598), - [sym_cast_expression] = STATE(598), - [sym_sizeof_expression] = STATE(598), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(598), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(598), - [sym_concatenated_string] = STATE(598), - [sym_string_literal] = STATE(386), - [sym__empty_declaration] = STATE(18), - [sym_macro_type_specifier] = STATE(750), - [aux_sym_translation_unit_repeat1] = STATE(18), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), + [sym_preproc_include] = STATE(20), + [sym_preproc_def] = STATE(20), + [sym_preproc_function_def] = STATE(20), + [sym_preproc_call] = STATE(20), + [sym_preproc_if] = STATE(20), + [sym_preproc_ifdef] = STATE(20), + [sym_preproc_else] = STATE(1133), + [sym_preproc_elif] = STATE(1133), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_specifiers] = STATE(788), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(20), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), + [sym__type_specifier] = STATE(753), + [sym_sized_type_specifier] = STATE(753), + [sym_enum_specifier] = STATE(753), + [sym_struct_specifier] = STATE(753), + [sym_union_specifier] = STATE(753), + [sym_labeled_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_switch_statement] = STATE(20), + [sym_case_statement] = STATE(20), + [sym_while_statement] = STATE(20), + [sym_do_statement] = STATE(20), + [sym_for_statement] = STATE(20), + [sym_return_statement] = STATE(20), + [sym_break_statement] = STATE(20), + [sym_continue_statement] = STATE(20), + [sym_goto_statement] = STATE(20), + [sym__expression] = STATE(575), + [sym_comma_expression] = STATE(1080), + [sym_conditional_expression] = STATE(575), + [sym_assignment_expression] = STATE(575), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(575), + [sym_binary_expression] = STATE(575), + [sym_update_expression] = STATE(575), + [sym_cast_expression] = STATE(575), + [sym_sizeof_expression] = STATE(575), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string_literal] = STATE(380), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(753), + [aux_sym_translation_unit_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), [sym_identifier] = ACTIONS(85), [aux_sym_preproc_include_token1] = ACTIONS(87), [aux_sym_preproc_def_token1] = ACTIONS(89), @@ -6520,8 +6695,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(75), [sym_number_literal] = ACTIONS(135), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), [sym_true] = ACTIONS(137), [sym_false] = ACTIONS(137), @@ -6529,63 +6710,63 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [9] = { - [sym_preproc_include] = STATE(10), - [sym_preproc_def] = STATE(10), - [sym_preproc_function_def] = STATE(10), - [sym_preproc_call] = STATE(10), - [sym_preproc_if] = STATE(10), - [sym_preproc_ifdef] = STATE(10), - [sym_preproc_else] = STATE(1044), - [sym_preproc_elif] = STATE(1044), - [sym_function_definition] = STATE(10), - [sym_declaration] = STATE(10), - [sym_type_definition] = STATE(10), - [sym__declaration_specifiers] = STATE(782), - [sym_linkage_specification] = STATE(10), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(10), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), - [sym__type_specifier] = STATE(750), - [sym_sized_type_specifier] = STATE(750), - [sym_enum_specifier] = STATE(750), - [sym_struct_specifier] = STATE(750), - [sym_union_specifier] = STATE(750), - [sym_labeled_statement] = STATE(10), - [sym_expression_statement] = STATE(10), - [sym_if_statement] = STATE(10), - [sym_switch_statement] = STATE(10), - [sym_case_statement] = STATE(10), - [sym_while_statement] = STATE(10), - [sym_do_statement] = STATE(10), - [sym_for_statement] = STATE(10), - [sym_return_statement] = STATE(10), - [sym_break_statement] = STATE(10), - [sym_continue_statement] = STATE(10), - [sym_goto_statement] = STATE(10), - [sym__expression] = STATE(598), - [sym_comma_expression] = STATE(1064), - [sym_conditional_expression] = STATE(598), - [sym_assignment_expression] = STATE(598), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(598), - [sym_binary_expression] = STATE(598), - [sym_update_expression] = STATE(598), - [sym_cast_expression] = STATE(598), - [sym_sizeof_expression] = STATE(598), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(598), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(598), - [sym_concatenated_string] = STATE(598), - [sym_string_literal] = STATE(386), - [sym__empty_declaration] = STATE(10), - [sym_macro_type_specifier] = STATE(750), - [aux_sym_translation_unit_repeat1] = STATE(10), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), + [sym_preproc_include] = STATE(20), + [sym_preproc_def] = STATE(20), + [sym_preproc_function_def] = STATE(20), + [sym_preproc_call] = STATE(20), + [sym_preproc_if] = STATE(20), + [sym_preproc_ifdef] = STATE(20), + [sym_preproc_else] = STATE(1032), + [sym_preproc_elif] = STATE(1032), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_specifiers] = STATE(788), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(20), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), + [sym__type_specifier] = STATE(753), + [sym_sized_type_specifier] = STATE(753), + [sym_enum_specifier] = STATE(753), + [sym_struct_specifier] = STATE(753), + [sym_union_specifier] = STATE(753), + [sym_labeled_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_switch_statement] = STATE(20), + [sym_case_statement] = STATE(20), + [sym_while_statement] = STATE(20), + [sym_do_statement] = STATE(20), + [sym_for_statement] = STATE(20), + [sym_return_statement] = STATE(20), + [sym_break_statement] = STATE(20), + [sym_continue_statement] = STATE(20), + [sym_goto_statement] = STATE(20), + [sym__expression] = STATE(575), + [sym_comma_expression] = STATE(1080), + [sym_conditional_expression] = STATE(575), + [sym_assignment_expression] = STATE(575), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(575), + [sym_binary_expression] = STATE(575), + [sym_update_expression] = STATE(575), + [sym_cast_expression] = STATE(575), + [sym_sizeof_expression] = STATE(575), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string_literal] = STATE(380), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(753), + [aux_sym_translation_unit_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), [sym_identifier] = ACTIONS(85), [aux_sym_preproc_include_token1] = ACTIONS(87), [aux_sym_preproc_def_token1] = ACTIONS(89), @@ -6640,8 +6821,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(75), [sym_number_literal] = ACTIONS(135), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), [sym_true] = ACTIONS(137), [sym_false] = ACTIONS(137), @@ -6655,22 +6842,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(20), [sym_preproc_if] = STATE(20), [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1144), - [sym_preproc_elif] = STATE(1144), + [sym_preproc_else] = STATE(1132), + [sym_preproc_elif] = STATE(1132), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym__declaration_specifiers] = STATE(782), + [sym__declaration_specifiers] = STATE(788), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(568), + [sym_attribute_specifier] = STATE(570), [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), - [sym__type_specifier] = STATE(750), - [sym_sized_type_specifier] = STATE(750), - [sym_enum_specifier] = STATE(750), - [sym_struct_specifier] = STATE(750), - [sym_union_specifier] = STATE(750), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), + [sym__type_specifier] = STATE(753), + [sym_sized_type_specifier] = STATE(753), + [sym_enum_specifier] = STATE(753), + [sym_struct_specifier] = STATE(753), + [sym_union_specifier] = STATE(753), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), [sym_if_statement] = STATE(20), @@ -6683,29 +6870,29 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(598), - [sym_comma_expression] = STATE(1064), - [sym_conditional_expression] = STATE(598), - [sym_assignment_expression] = STATE(598), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(598), - [sym_binary_expression] = STATE(598), - [sym_update_expression] = STATE(598), - [sym_cast_expression] = STATE(598), - [sym_sizeof_expression] = STATE(598), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(598), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(598), - [sym_concatenated_string] = STATE(598), - [sym_string_literal] = STATE(386), + [sym__expression] = STATE(575), + [sym_comma_expression] = STATE(1080), + [sym_conditional_expression] = STATE(575), + [sym_assignment_expression] = STATE(575), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(575), + [sym_binary_expression] = STATE(575), + [sym_update_expression] = STATE(575), + [sym_cast_expression] = STATE(575), + [sym_sizeof_expression] = STATE(575), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string_literal] = STATE(380), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(750), + [sym_macro_type_specifier] = STATE(753), [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), [sym_identifier] = ACTIONS(85), [aux_sym_preproc_include_token1] = ACTIONS(87), [aux_sym_preproc_def_token1] = ACTIONS(89), @@ -6760,8 +6947,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(75), [sym_number_literal] = ACTIONS(135), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), [sym_true] = ACTIONS(137), [sym_false] = ACTIONS(137), @@ -6769,63 +6962,63 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [11] = { - [sym_preproc_include] = STATE(20), - [sym_preproc_def] = STATE(20), - [sym_preproc_function_def] = STATE(20), - [sym_preproc_call] = STATE(20), - [sym_preproc_if] = STATE(20), - [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1026), - [sym_preproc_elif] = STATE(1026), - [sym_function_definition] = STATE(20), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), - [sym__declaration_specifiers] = STATE(782), - [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), - [sym__type_specifier] = STATE(750), - [sym_sized_type_specifier] = STATE(750), - [sym_enum_specifier] = STATE(750), - [sym_struct_specifier] = STATE(750), - [sym_union_specifier] = STATE(750), - [sym_labeled_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_switch_statement] = STATE(20), - [sym_case_statement] = STATE(20), - [sym_while_statement] = STATE(20), - [sym_do_statement] = STATE(20), - [sym_for_statement] = STATE(20), - [sym_return_statement] = STATE(20), - [sym_break_statement] = STATE(20), - [sym_continue_statement] = STATE(20), - [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(598), - [sym_comma_expression] = STATE(1064), - [sym_conditional_expression] = STATE(598), - [sym_assignment_expression] = STATE(598), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(598), - [sym_binary_expression] = STATE(598), - [sym_update_expression] = STATE(598), - [sym_cast_expression] = STATE(598), - [sym_sizeof_expression] = STATE(598), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(598), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(598), - [sym_concatenated_string] = STATE(598), - [sym_string_literal] = STATE(386), - [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(750), - [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), + [sym_preproc_include] = STATE(3), + [sym_preproc_def] = STATE(3), + [sym_preproc_function_def] = STATE(3), + [sym_preproc_call] = STATE(3), + [sym_preproc_if] = STATE(3), + [sym_preproc_ifdef] = STATE(3), + [sym_preproc_else] = STATE(1086), + [sym_preproc_elif] = STATE(1086), + [sym_function_definition] = STATE(3), + [sym_declaration] = STATE(3), + [sym_type_definition] = STATE(3), + [sym__declaration_specifiers] = STATE(788), + [sym_linkage_specification] = STATE(3), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(3), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), + [sym__type_specifier] = STATE(753), + [sym_sized_type_specifier] = STATE(753), + [sym_enum_specifier] = STATE(753), + [sym_struct_specifier] = STATE(753), + [sym_union_specifier] = STATE(753), + [sym_labeled_statement] = STATE(3), + [sym_expression_statement] = STATE(3), + [sym_if_statement] = STATE(3), + [sym_switch_statement] = STATE(3), + [sym_case_statement] = STATE(3), + [sym_while_statement] = STATE(3), + [sym_do_statement] = STATE(3), + [sym_for_statement] = STATE(3), + [sym_return_statement] = STATE(3), + [sym_break_statement] = STATE(3), + [sym_continue_statement] = STATE(3), + [sym_goto_statement] = STATE(3), + [sym__expression] = STATE(575), + [sym_comma_expression] = STATE(1080), + [sym_conditional_expression] = STATE(575), + [sym_assignment_expression] = STATE(575), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(575), + [sym_binary_expression] = STATE(575), + [sym_update_expression] = STATE(575), + [sym_cast_expression] = STATE(575), + [sym_sizeof_expression] = STATE(575), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string_literal] = STATE(380), + [sym__empty_declaration] = STATE(3), + [sym_macro_type_specifier] = STATE(753), + [aux_sym_translation_unit_repeat1] = STATE(3), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), [sym_identifier] = ACTIONS(85), [aux_sym_preproc_include_token1] = ACTIONS(87), [aux_sym_preproc_def_token1] = ACTIONS(89), @@ -6880,8 +7073,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(75), [sym_number_literal] = ACTIONS(135), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), [sym_true] = ACTIONS(137), [sym_false] = ACTIONS(137), @@ -6889,63 +7088,63 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [12] = { - [sym_preproc_include] = STATE(20), - [sym_preproc_def] = STATE(20), - [sym_preproc_function_def] = STATE(20), - [sym_preproc_call] = STATE(20), - [sym_preproc_if] = STATE(20), - [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1141), - [sym_preproc_elif] = STATE(1141), - [sym_function_definition] = STATE(20), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), - [sym__declaration_specifiers] = STATE(782), - [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), - [sym__type_specifier] = STATE(750), - [sym_sized_type_specifier] = STATE(750), - [sym_enum_specifier] = STATE(750), - [sym_struct_specifier] = STATE(750), - [sym_union_specifier] = STATE(750), - [sym_labeled_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_switch_statement] = STATE(20), - [sym_case_statement] = STATE(20), - [sym_while_statement] = STATE(20), - [sym_do_statement] = STATE(20), - [sym_for_statement] = STATE(20), - [sym_return_statement] = STATE(20), - [sym_break_statement] = STATE(20), - [sym_continue_statement] = STATE(20), - [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(598), - [sym_comma_expression] = STATE(1064), - [sym_conditional_expression] = STATE(598), - [sym_assignment_expression] = STATE(598), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(598), - [sym_binary_expression] = STATE(598), - [sym_update_expression] = STATE(598), - [sym_cast_expression] = STATE(598), - [sym_sizeof_expression] = STATE(598), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(598), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(598), - [sym_concatenated_string] = STATE(598), - [sym_string_literal] = STATE(386), - [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(750), - [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), + [sym_preproc_include] = STATE(19), + [sym_preproc_def] = STATE(19), + [sym_preproc_function_def] = STATE(19), + [sym_preproc_call] = STATE(19), + [sym_preproc_if] = STATE(19), + [sym_preproc_ifdef] = STATE(19), + [sym_preproc_else] = STATE(1153), + [sym_preproc_elif] = STATE(1153), + [sym_function_definition] = STATE(19), + [sym_declaration] = STATE(19), + [sym_type_definition] = STATE(19), + [sym__declaration_specifiers] = STATE(788), + [sym_linkage_specification] = STATE(19), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(19), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), + [sym__type_specifier] = STATE(753), + [sym_sized_type_specifier] = STATE(753), + [sym_enum_specifier] = STATE(753), + [sym_struct_specifier] = STATE(753), + [sym_union_specifier] = STATE(753), + [sym_labeled_statement] = STATE(19), + [sym_expression_statement] = STATE(19), + [sym_if_statement] = STATE(19), + [sym_switch_statement] = STATE(19), + [sym_case_statement] = STATE(19), + [sym_while_statement] = STATE(19), + [sym_do_statement] = STATE(19), + [sym_for_statement] = STATE(19), + [sym_return_statement] = STATE(19), + [sym_break_statement] = STATE(19), + [sym_continue_statement] = STATE(19), + [sym_goto_statement] = STATE(19), + [sym__expression] = STATE(575), + [sym_comma_expression] = STATE(1080), + [sym_conditional_expression] = STATE(575), + [sym_assignment_expression] = STATE(575), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(575), + [sym_binary_expression] = STATE(575), + [sym_update_expression] = STATE(575), + [sym_cast_expression] = STATE(575), + [sym_sizeof_expression] = STATE(575), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string_literal] = STATE(380), + [sym__empty_declaration] = STATE(19), + [sym_macro_type_specifier] = STATE(753), + [aux_sym_translation_unit_repeat1] = STATE(19), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), [sym_identifier] = ACTIONS(85), [aux_sym_preproc_include_token1] = ACTIONS(87), [aux_sym_preproc_def_token1] = ACTIONS(89), @@ -7000,8 +7199,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(75), [sym_number_literal] = ACTIONS(135), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), [sym_true] = ACTIONS(137), [sym_false] = ACTIONS(137), @@ -7009,63 +7214,63 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [13] = { - [sym_preproc_include] = STATE(4), - [sym_preproc_def] = STATE(4), - [sym_preproc_function_def] = STATE(4), - [sym_preproc_call] = STATE(4), - [sym_preproc_if] = STATE(4), - [sym_preproc_ifdef] = STATE(4), - [sym_preproc_else] = STATE(1124), - [sym_preproc_elif] = STATE(1124), - [sym_function_definition] = STATE(4), - [sym_declaration] = STATE(4), - [sym_type_definition] = STATE(4), - [sym__declaration_specifiers] = STATE(782), - [sym_linkage_specification] = STATE(4), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(4), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), - [sym__type_specifier] = STATE(750), - [sym_sized_type_specifier] = STATE(750), - [sym_enum_specifier] = STATE(750), - [sym_struct_specifier] = STATE(750), - [sym_union_specifier] = STATE(750), - [sym_labeled_statement] = STATE(4), - [sym_expression_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_switch_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_while_statement] = STATE(4), - [sym_do_statement] = STATE(4), - [sym_for_statement] = STATE(4), - [sym_return_statement] = STATE(4), - [sym_break_statement] = STATE(4), - [sym_continue_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym__expression] = STATE(598), - [sym_comma_expression] = STATE(1064), - [sym_conditional_expression] = STATE(598), - [sym_assignment_expression] = STATE(598), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(598), - [sym_binary_expression] = STATE(598), - [sym_update_expression] = STATE(598), - [sym_cast_expression] = STATE(598), - [sym_sizeof_expression] = STATE(598), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(598), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(598), - [sym_concatenated_string] = STATE(598), - [sym_string_literal] = STATE(386), - [sym__empty_declaration] = STATE(4), - [sym_macro_type_specifier] = STATE(750), - [aux_sym_translation_unit_repeat1] = STATE(4), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), + [sym_preproc_include] = STATE(9), + [sym_preproc_def] = STATE(9), + [sym_preproc_function_def] = STATE(9), + [sym_preproc_call] = STATE(9), + [sym_preproc_if] = STATE(9), + [sym_preproc_ifdef] = STATE(9), + [sym_preproc_else] = STATE(1025), + [sym_preproc_elif] = STATE(1025), + [sym_function_definition] = STATE(9), + [sym_declaration] = STATE(9), + [sym_type_definition] = STATE(9), + [sym__declaration_specifiers] = STATE(788), + [sym_linkage_specification] = STATE(9), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(9), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), + [sym__type_specifier] = STATE(753), + [sym_sized_type_specifier] = STATE(753), + [sym_enum_specifier] = STATE(753), + [sym_struct_specifier] = STATE(753), + [sym_union_specifier] = STATE(753), + [sym_labeled_statement] = STATE(9), + [sym_expression_statement] = STATE(9), + [sym_if_statement] = STATE(9), + [sym_switch_statement] = STATE(9), + [sym_case_statement] = STATE(9), + [sym_while_statement] = STATE(9), + [sym_do_statement] = STATE(9), + [sym_for_statement] = STATE(9), + [sym_return_statement] = STATE(9), + [sym_break_statement] = STATE(9), + [sym_continue_statement] = STATE(9), + [sym_goto_statement] = STATE(9), + [sym__expression] = STATE(575), + [sym_comma_expression] = STATE(1080), + [sym_conditional_expression] = STATE(575), + [sym_assignment_expression] = STATE(575), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(575), + [sym_binary_expression] = STATE(575), + [sym_update_expression] = STATE(575), + [sym_cast_expression] = STATE(575), + [sym_sizeof_expression] = STATE(575), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string_literal] = STATE(380), + [sym__empty_declaration] = STATE(9), + [sym_macro_type_specifier] = STATE(753), + [aux_sym_translation_unit_repeat1] = STATE(9), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), [sym_identifier] = ACTIONS(85), [aux_sym_preproc_include_token1] = ACTIONS(87), [aux_sym_preproc_def_token1] = ACTIONS(89), @@ -7120,8 +7325,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(75), [sym_number_literal] = ACTIONS(135), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), [sym_true] = ACTIONS(137), [sym_false] = ACTIONS(137), @@ -7129,63 +7340,63 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [14] = { - [sym_preproc_include] = STATE(15), - [sym_preproc_def] = STATE(15), - [sym_preproc_function_def] = STATE(15), - [sym_preproc_call] = STATE(15), - [sym_preproc_if] = STATE(15), - [sym_preproc_ifdef] = STATE(15), - [sym_preproc_else] = STATE(1025), - [sym_preproc_elif] = STATE(1025), - [sym_function_definition] = STATE(15), - [sym_declaration] = STATE(15), - [sym_type_definition] = STATE(15), - [sym__declaration_specifiers] = STATE(782), - [sym_linkage_specification] = STATE(15), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(15), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), - [sym__type_specifier] = STATE(750), - [sym_sized_type_specifier] = STATE(750), - [sym_enum_specifier] = STATE(750), - [sym_struct_specifier] = STATE(750), - [sym_union_specifier] = STATE(750), - [sym_labeled_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_case_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_goto_statement] = STATE(15), - [sym__expression] = STATE(598), - [sym_comma_expression] = STATE(1064), - [sym_conditional_expression] = STATE(598), - [sym_assignment_expression] = STATE(598), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(598), - [sym_binary_expression] = STATE(598), - [sym_update_expression] = STATE(598), - [sym_cast_expression] = STATE(598), - [sym_sizeof_expression] = STATE(598), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(598), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(598), - [sym_concatenated_string] = STATE(598), - [sym_string_literal] = STATE(386), - [sym__empty_declaration] = STATE(15), - [sym_macro_type_specifier] = STATE(750), - [aux_sym_translation_unit_repeat1] = STATE(15), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), + [sym_preproc_include] = STATE(4), + [sym_preproc_def] = STATE(4), + [sym_preproc_function_def] = STATE(4), + [sym_preproc_call] = STATE(4), + [sym_preproc_if] = STATE(4), + [sym_preproc_ifdef] = STATE(4), + [sym_preproc_else] = STATE(1085), + [sym_preproc_elif] = STATE(1085), + [sym_function_definition] = STATE(4), + [sym_declaration] = STATE(4), + [sym_type_definition] = STATE(4), + [sym__declaration_specifiers] = STATE(788), + [sym_linkage_specification] = STATE(4), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(4), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), + [sym__type_specifier] = STATE(753), + [sym_sized_type_specifier] = STATE(753), + [sym_enum_specifier] = STATE(753), + [sym_struct_specifier] = STATE(753), + [sym_union_specifier] = STATE(753), + [sym_labeled_statement] = STATE(4), + [sym_expression_statement] = STATE(4), + [sym_if_statement] = STATE(4), + [sym_switch_statement] = STATE(4), + [sym_case_statement] = STATE(4), + [sym_while_statement] = STATE(4), + [sym_do_statement] = STATE(4), + [sym_for_statement] = STATE(4), + [sym_return_statement] = STATE(4), + [sym_break_statement] = STATE(4), + [sym_continue_statement] = STATE(4), + [sym_goto_statement] = STATE(4), + [sym__expression] = STATE(575), + [sym_comma_expression] = STATE(1080), + [sym_conditional_expression] = STATE(575), + [sym_assignment_expression] = STATE(575), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(575), + [sym_binary_expression] = STATE(575), + [sym_update_expression] = STATE(575), + [sym_cast_expression] = STATE(575), + [sym_sizeof_expression] = STATE(575), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string_literal] = STATE(380), + [sym__empty_declaration] = STATE(4), + [sym_macro_type_specifier] = STATE(753), + [aux_sym_translation_unit_repeat1] = STATE(4), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), [sym_identifier] = ACTIONS(85), [aux_sym_preproc_include_token1] = ACTIONS(87), [aux_sym_preproc_def_token1] = ACTIONS(89), @@ -7240,8 +7451,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(75), [sym_number_literal] = ACTIONS(135), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), [sym_true] = ACTIONS(137), [sym_false] = ACTIONS(137), @@ -7249,63 +7466,63 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [15] = { - [sym_preproc_include] = STATE(20), - [sym_preproc_def] = STATE(20), - [sym_preproc_function_def] = STATE(20), - [sym_preproc_call] = STATE(20), - [sym_preproc_if] = STATE(20), - [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1030), - [sym_preproc_elif] = STATE(1030), - [sym_function_definition] = STATE(20), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), - [sym__declaration_specifiers] = STATE(782), - [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), - [sym__type_specifier] = STATE(750), - [sym_sized_type_specifier] = STATE(750), - [sym_enum_specifier] = STATE(750), - [sym_struct_specifier] = STATE(750), - [sym_union_specifier] = STATE(750), - [sym_labeled_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_switch_statement] = STATE(20), - [sym_case_statement] = STATE(20), - [sym_while_statement] = STATE(20), - [sym_do_statement] = STATE(20), - [sym_for_statement] = STATE(20), - [sym_return_statement] = STATE(20), - [sym_break_statement] = STATE(20), - [sym_continue_statement] = STATE(20), - [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(598), - [sym_comma_expression] = STATE(1064), - [sym_conditional_expression] = STATE(598), - [sym_assignment_expression] = STATE(598), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(598), - [sym_binary_expression] = STATE(598), - [sym_update_expression] = STATE(598), - [sym_cast_expression] = STATE(598), - [sym_sizeof_expression] = STATE(598), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(598), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(598), - [sym_concatenated_string] = STATE(598), - [sym_string_literal] = STATE(386), - [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(750), - [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), + [sym_preproc_include] = STATE(10), + [sym_preproc_def] = STATE(10), + [sym_preproc_function_def] = STATE(10), + [sym_preproc_call] = STATE(10), + [sym_preproc_if] = STATE(10), + [sym_preproc_ifdef] = STATE(10), + [sym_preproc_else] = STATE(1111), + [sym_preproc_elif] = STATE(1111), + [sym_function_definition] = STATE(10), + [sym_declaration] = STATE(10), + [sym_type_definition] = STATE(10), + [sym__declaration_specifiers] = STATE(788), + [sym_linkage_specification] = STATE(10), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(10), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), + [sym__type_specifier] = STATE(753), + [sym_sized_type_specifier] = STATE(753), + [sym_enum_specifier] = STATE(753), + [sym_struct_specifier] = STATE(753), + [sym_union_specifier] = STATE(753), + [sym_labeled_statement] = STATE(10), + [sym_expression_statement] = STATE(10), + [sym_if_statement] = STATE(10), + [sym_switch_statement] = STATE(10), + [sym_case_statement] = STATE(10), + [sym_while_statement] = STATE(10), + [sym_do_statement] = STATE(10), + [sym_for_statement] = STATE(10), + [sym_return_statement] = STATE(10), + [sym_break_statement] = STATE(10), + [sym_continue_statement] = STATE(10), + [sym_goto_statement] = STATE(10), + [sym__expression] = STATE(575), + [sym_comma_expression] = STATE(1080), + [sym_conditional_expression] = STATE(575), + [sym_assignment_expression] = STATE(575), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(575), + [sym_binary_expression] = STATE(575), + [sym_update_expression] = STATE(575), + [sym_cast_expression] = STATE(575), + [sym_sizeof_expression] = STATE(575), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string_literal] = STATE(380), + [sym__empty_declaration] = STATE(10), + [sym_macro_type_specifier] = STATE(753), + [aux_sym_translation_unit_repeat1] = STATE(10), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), [sym_identifier] = ACTIONS(85), [aux_sym_preproc_include_token1] = ACTIONS(87), [aux_sym_preproc_def_token1] = ACTIONS(89), @@ -7360,8 +7577,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(75), [sym_number_literal] = ACTIONS(135), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), [sym_true] = ACTIONS(137), [sym_false] = ACTIONS(137), @@ -7369,63 +7592,63 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [16] = { - [sym_preproc_include] = STATE(20), - [sym_preproc_def] = STATE(20), - [sym_preproc_function_def] = STATE(20), - [sym_preproc_call] = STATE(20), - [sym_preproc_if] = STATE(20), - [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1029), - [sym_preproc_elif] = STATE(1029), - [sym_function_definition] = STATE(20), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), - [sym__declaration_specifiers] = STATE(782), - [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), - [sym__type_specifier] = STATE(750), - [sym_sized_type_specifier] = STATE(750), - [sym_enum_specifier] = STATE(750), - [sym_struct_specifier] = STATE(750), - [sym_union_specifier] = STATE(750), - [sym_labeled_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_switch_statement] = STATE(20), - [sym_case_statement] = STATE(20), - [sym_while_statement] = STATE(20), - [sym_do_statement] = STATE(20), - [sym_for_statement] = STATE(20), - [sym_return_statement] = STATE(20), - [sym_break_statement] = STATE(20), - [sym_continue_statement] = STATE(20), - [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(598), - [sym_comma_expression] = STATE(1064), - [sym_conditional_expression] = STATE(598), - [sym_assignment_expression] = STATE(598), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(598), - [sym_binary_expression] = STATE(598), - [sym_update_expression] = STATE(598), - [sym_cast_expression] = STATE(598), - [sym_sizeof_expression] = STATE(598), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(598), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(598), - [sym_concatenated_string] = STATE(598), - [sym_string_literal] = STATE(386), - [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(750), - [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), + [sym_preproc_include] = STATE(8), + [sym_preproc_def] = STATE(8), + [sym_preproc_function_def] = STATE(8), + [sym_preproc_call] = STATE(8), + [sym_preproc_if] = STATE(8), + [sym_preproc_ifdef] = STATE(8), + [sym_preproc_else] = STATE(1122), + [sym_preproc_elif] = STATE(1122), + [sym_function_definition] = STATE(8), + [sym_declaration] = STATE(8), + [sym_type_definition] = STATE(8), + [sym__declaration_specifiers] = STATE(788), + [sym_linkage_specification] = STATE(8), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(8), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), + [sym__type_specifier] = STATE(753), + [sym_sized_type_specifier] = STATE(753), + [sym_enum_specifier] = STATE(753), + [sym_struct_specifier] = STATE(753), + [sym_union_specifier] = STATE(753), + [sym_labeled_statement] = STATE(8), + [sym_expression_statement] = STATE(8), + [sym_if_statement] = STATE(8), + [sym_switch_statement] = STATE(8), + [sym_case_statement] = STATE(8), + [sym_while_statement] = STATE(8), + [sym_do_statement] = STATE(8), + [sym_for_statement] = STATE(8), + [sym_return_statement] = STATE(8), + [sym_break_statement] = STATE(8), + [sym_continue_statement] = STATE(8), + [sym_goto_statement] = STATE(8), + [sym__expression] = STATE(575), + [sym_comma_expression] = STATE(1080), + [sym_conditional_expression] = STATE(575), + [sym_assignment_expression] = STATE(575), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(575), + [sym_binary_expression] = STATE(575), + [sym_update_expression] = STATE(575), + [sym_cast_expression] = STATE(575), + [sym_sizeof_expression] = STATE(575), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string_literal] = STATE(380), + [sym__empty_declaration] = STATE(8), + [sym_macro_type_specifier] = STATE(753), + [aux_sym_translation_unit_repeat1] = STATE(8), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), [sym_identifier] = ACTIONS(85), [aux_sym_preproc_include_token1] = ACTIONS(87), [aux_sym_preproc_def_token1] = ACTIONS(89), @@ -7480,8 +7703,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(75), [sym_number_literal] = ACTIONS(135), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), [sym_true] = ACTIONS(137), [sym_false] = ACTIONS(137), @@ -7489,63 +7718,63 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [17] = { - [sym_preproc_include] = STATE(16), - [sym_preproc_def] = STATE(16), - [sym_preproc_function_def] = STATE(16), - [sym_preproc_call] = STATE(16), - [sym_preproc_if] = STATE(16), - [sym_preproc_ifdef] = STATE(16), - [sym_preproc_else] = STATE(1024), - [sym_preproc_elif] = STATE(1024), - [sym_function_definition] = STATE(16), - [sym_declaration] = STATE(16), - [sym_type_definition] = STATE(16), - [sym__declaration_specifiers] = STATE(782), - [sym_linkage_specification] = STATE(16), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(16), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), - [sym__type_specifier] = STATE(750), - [sym_sized_type_specifier] = STATE(750), - [sym_enum_specifier] = STATE(750), - [sym_struct_specifier] = STATE(750), - [sym_union_specifier] = STATE(750), - [sym_labeled_statement] = STATE(16), - [sym_expression_statement] = STATE(16), - [sym_if_statement] = STATE(16), - [sym_switch_statement] = STATE(16), - [sym_case_statement] = STATE(16), - [sym_while_statement] = STATE(16), - [sym_do_statement] = STATE(16), - [sym_for_statement] = STATE(16), - [sym_return_statement] = STATE(16), - [sym_break_statement] = STATE(16), - [sym_continue_statement] = STATE(16), - [sym_goto_statement] = STATE(16), - [sym__expression] = STATE(598), - [sym_comma_expression] = STATE(1064), - [sym_conditional_expression] = STATE(598), - [sym_assignment_expression] = STATE(598), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(598), - [sym_binary_expression] = STATE(598), - [sym_update_expression] = STATE(598), - [sym_cast_expression] = STATE(598), - [sym_sizeof_expression] = STATE(598), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(598), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(598), - [sym_concatenated_string] = STATE(598), - [sym_string_literal] = STATE(386), - [sym__empty_declaration] = STATE(16), - [sym_macro_type_specifier] = STATE(750), - [aux_sym_translation_unit_repeat1] = STATE(16), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), + [sym_preproc_include] = STATE(18), + [sym_preproc_def] = STATE(18), + [sym_preproc_function_def] = STATE(18), + [sym_preproc_call] = STATE(18), + [sym_preproc_if] = STATE(18), + [sym_preproc_ifdef] = STATE(18), + [sym_preproc_else] = STATE(1027), + [sym_preproc_elif] = STATE(1027), + [sym_function_definition] = STATE(18), + [sym_declaration] = STATE(18), + [sym_type_definition] = STATE(18), + [sym__declaration_specifiers] = STATE(788), + [sym_linkage_specification] = STATE(18), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(18), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), + [sym__type_specifier] = STATE(753), + [sym_sized_type_specifier] = STATE(753), + [sym_enum_specifier] = STATE(753), + [sym_struct_specifier] = STATE(753), + [sym_union_specifier] = STATE(753), + [sym_labeled_statement] = STATE(18), + [sym_expression_statement] = STATE(18), + [sym_if_statement] = STATE(18), + [sym_switch_statement] = STATE(18), + [sym_case_statement] = STATE(18), + [sym_while_statement] = STATE(18), + [sym_do_statement] = STATE(18), + [sym_for_statement] = STATE(18), + [sym_return_statement] = STATE(18), + [sym_break_statement] = STATE(18), + [sym_continue_statement] = STATE(18), + [sym_goto_statement] = STATE(18), + [sym__expression] = STATE(575), + [sym_comma_expression] = STATE(1080), + [sym_conditional_expression] = STATE(575), + [sym_assignment_expression] = STATE(575), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(575), + [sym_binary_expression] = STATE(575), + [sym_update_expression] = STATE(575), + [sym_cast_expression] = STATE(575), + [sym_sizeof_expression] = STATE(575), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string_literal] = STATE(380), + [sym__empty_declaration] = STATE(18), + [sym_macro_type_specifier] = STATE(753), + [aux_sym_translation_unit_repeat1] = STATE(18), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), [sym_identifier] = ACTIONS(85), [aux_sym_preproc_include_token1] = ACTIONS(87), [aux_sym_preproc_def_token1] = ACTIONS(89), @@ -7600,8 +7829,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(75), [sym_number_literal] = ACTIONS(135), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), [sym_true] = ACTIONS(137), [sym_false] = ACTIONS(137), @@ -7615,22 +7850,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(20), [sym_preproc_if] = STATE(20), [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1049), - [sym_preproc_elif] = STATE(1049), + [sym_preproc_else] = STATE(1033), + [sym_preproc_elif] = STATE(1033), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym__declaration_specifiers] = STATE(782), + [sym__declaration_specifiers] = STATE(788), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(568), + [sym_attribute_specifier] = STATE(570), [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), - [sym__type_specifier] = STATE(750), - [sym_sized_type_specifier] = STATE(750), - [sym_enum_specifier] = STATE(750), - [sym_struct_specifier] = STATE(750), - [sym_union_specifier] = STATE(750), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), + [sym__type_specifier] = STATE(753), + [sym_sized_type_specifier] = STATE(753), + [sym_enum_specifier] = STATE(753), + [sym_struct_specifier] = STATE(753), + [sym_union_specifier] = STATE(753), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), [sym_if_statement] = STATE(20), @@ -7643,29 +7878,29 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(598), - [sym_comma_expression] = STATE(1064), - [sym_conditional_expression] = STATE(598), - [sym_assignment_expression] = STATE(598), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(598), - [sym_binary_expression] = STATE(598), - [sym_update_expression] = STATE(598), - [sym_cast_expression] = STATE(598), - [sym_sizeof_expression] = STATE(598), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(598), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(598), - [sym_concatenated_string] = STATE(598), - [sym_string_literal] = STATE(386), + [sym__expression] = STATE(575), + [sym_comma_expression] = STATE(1080), + [sym_conditional_expression] = STATE(575), + [sym_assignment_expression] = STATE(575), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(575), + [sym_binary_expression] = STATE(575), + [sym_update_expression] = STATE(575), + [sym_cast_expression] = STATE(575), + [sym_sizeof_expression] = STATE(575), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string_literal] = STATE(380), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(750), + [sym_macro_type_specifier] = STATE(753), [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), [sym_identifier] = ACTIONS(85), [aux_sym_preproc_include_token1] = ACTIONS(87), [aux_sym_preproc_def_token1] = ACTIONS(89), @@ -7720,8 +7955,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(75), [sym_number_literal] = ACTIONS(135), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), [sym_true] = ACTIONS(137), [sym_false] = ACTIONS(137), @@ -7729,63 +7970,63 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [19] = { - [sym_preproc_include] = STATE(12), - [sym_preproc_def] = STATE(12), - [sym_preproc_function_def] = STATE(12), - [sym_preproc_call] = STATE(12), - [sym_preproc_if] = STATE(12), - [sym_preproc_ifdef] = STATE(12), - [sym_preproc_else] = STATE(1038), - [sym_preproc_elif] = STATE(1038), - [sym_function_definition] = STATE(12), - [sym_declaration] = STATE(12), - [sym_type_definition] = STATE(12), - [sym__declaration_specifiers] = STATE(782), - [sym_linkage_specification] = STATE(12), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(12), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), - [sym__type_specifier] = STATE(750), - [sym_sized_type_specifier] = STATE(750), - [sym_enum_specifier] = STATE(750), - [sym_struct_specifier] = STATE(750), - [sym_union_specifier] = STATE(750), - [sym_labeled_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_if_statement] = STATE(12), - [sym_switch_statement] = STATE(12), - [sym_case_statement] = STATE(12), - [sym_while_statement] = STATE(12), - [sym_do_statement] = STATE(12), - [sym_for_statement] = STATE(12), - [sym_return_statement] = STATE(12), - [sym_break_statement] = STATE(12), - [sym_continue_statement] = STATE(12), - [sym_goto_statement] = STATE(12), - [sym__expression] = STATE(598), - [sym_comma_expression] = STATE(1064), - [sym_conditional_expression] = STATE(598), - [sym_assignment_expression] = STATE(598), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(598), - [sym_binary_expression] = STATE(598), - [sym_update_expression] = STATE(598), - [sym_cast_expression] = STATE(598), - [sym_sizeof_expression] = STATE(598), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(598), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(598), - [sym_concatenated_string] = STATE(598), - [sym_string_literal] = STATE(386), - [sym__empty_declaration] = STATE(12), - [sym_macro_type_specifier] = STATE(750), - [aux_sym_translation_unit_repeat1] = STATE(12), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), + [sym_preproc_include] = STATE(20), + [sym_preproc_def] = STATE(20), + [sym_preproc_function_def] = STATE(20), + [sym_preproc_call] = STATE(20), + [sym_preproc_if] = STATE(20), + [sym_preproc_ifdef] = STATE(20), + [sym_preproc_else] = STATE(1049), + [sym_preproc_elif] = STATE(1049), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_specifiers] = STATE(788), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(20), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), + [sym__type_specifier] = STATE(753), + [sym_sized_type_specifier] = STATE(753), + [sym_enum_specifier] = STATE(753), + [sym_struct_specifier] = STATE(753), + [sym_union_specifier] = STATE(753), + [sym_labeled_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_switch_statement] = STATE(20), + [sym_case_statement] = STATE(20), + [sym_while_statement] = STATE(20), + [sym_do_statement] = STATE(20), + [sym_for_statement] = STATE(20), + [sym_return_statement] = STATE(20), + [sym_break_statement] = STATE(20), + [sym_continue_statement] = STATE(20), + [sym_goto_statement] = STATE(20), + [sym__expression] = STATE(575), + [sym_comma_expression] = STATE(1080), + [sym_conditional_expression] = STATE(575), + [sym_assignment_expression] = STATE(575), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(575), + [sym_binary_expression] = STATE(575), + [sym_update_expression] = STATE(575), + [sym_cast_expression] = STATE(575), + [sym_sizeof_expression] = STATE(575), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string_literal] = STATE(380), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(753), + [aux_sym_translation_unit_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), [sym_identifier] = ACTIONS(85), [aux_sym_preproc_include_token1] = ACTIONS(87), [aux_sym_preproc_def_token1] = ACTIONS(89), @@ -7840,8 +8081,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(75), [sym_number_literal] = ACTIONS(135), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), [sym_true] = ACTIONS(137), [sym_false] = ACTIONS(137), @@ -7858,17 +8105,17 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym__declaration_specifiers] = STATE(782), + [sym__declaration_specifiers] = STATE(788), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(568), + [sym_attribute_specifier] = STATE(570), [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), - [sym__type_specifier] = STATE(750), - [sym_sized_type_specifier] = STATE(750), - [sym_enum_specifier] = STATE(750), - [sym_struct_specifier] = STATE(750), - [sym_union_specifier] = STATE(750), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), + [sym__type_specifier] = STATE(753), + [sym_sized_type_specifier] = STATE(753), + [sym_enum_specifier] = STATE(753), + [sym_struct_specifier] = STATE(753), + [sym_union_specifier] = STATE(753), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), [sym_if_statement] = STATE(20), @@ -7881,29 +8128,29 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(598), - [sym_comma_expression] = STATE(1064), - [sym_conditional_expression] = STATE(598), - [sym_assignment_expression] = STATE(598), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(598), - [sym_binary_expression] = STATE(598), - [sym_update_expression] = STATE(598), - [sym_cast_expression] = STATE(598), - [sym_sizeof_expression] = STATE(598), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(598), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(598), - [sym_concatenated_string] = STATE(598), - [sym_string_literal] = STATE(386), + [sym__expression] = STATE(575), + [sym_comma_expression] = STATE(1080), + [sym_conditional_expression] = STATE(575), + [sym_assignment_expression] = STATE(575), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(575), + [sym_binary_expression] = STATE(575), + [sym_update_expression] = STATE(575), + [sym_cast_expression] = STATE(575), + [sym_sizeof_expression] = STATE(575), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string_literal] = STATE(380), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(750), + [sym_macro_type_specifier] = STATE(753), [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(176), [aux_sym_preproc_def_token1] = ACTIONS(179), @@ -7958,8 +8205,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(277), [sym_number_literal] = ACTIONS(280), [anon_sym_L_SQUOTE] = ACTIONS(283), + [anon_sym_u_SQUOTE] = ACTIONS(283), + [anon_sym_U_SQUOTE] = ACTIONS(283), + [anon_sym_u8_SQUOTE] = ACTIONS(283), [anon_sym_SQUOTE] = ACTIONS(283), [anon_sym_L_DQUOTE] = ACTIONS(286), + [anon_sym_u_DQUOTE] = ACTIONS(286), + [anon_sym_U_DQUOTE] = ACTIONS(286), + [anon_sym_u8_DQUOTE] = ACTIONS(286), [anon_sym_DQUOTE] = ACTIONS(286), [sym_true] = ACTIONS(289), [sym_false] = ACTIONS(289), @@ -7967,61 +8220,61 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [21] = { - [sym_preproc_include] = STATE(37), - [sym_preproc_def] = STATE(37), - [sym_preproc_function_def] = STATE(37), - [sym_preproc_call] = STATE(37), - [sym_preproc_if] = STATE(37), - [sym_preproc_ifdef] = STATE(37), - [sym_function_definition] = STATE(37), - [sym_declaration] = STATE(37), - [sym_type_definition] = STATE(37), - [sym__declaration_specifiers] = STATE(790), - [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(37), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), - [sym__type_specifier] = STATE(744), - [sym_sized_type_specifier] = STATE(744), - [sym_enum_specifier] = STATE(744), - [sym_struct_specifier] = STATE(744), - [sym_union_specifier] = STATE(744), - [sym_labeled_statement] = STATE(37), - [sym_expression_statement] = STATE(37), - [sym_if_statement] = STATE(37), - [sym_switch_statement] = STATE(37), - [sym_case_statement] = STATE(37), - [sym_while_statement] = STATE(37), - [sym_do_statement] = STATE(37), - [sym_for_statement] = STATE(37), - [sym_return_statement] = STATE(37), - [sym_break_statement] = STATE(37), - [sym_continue_statement] = STATE(37), - [sym_goto_statement] = STATE(37), - [sym__expression] = STATE(605), - [sym_comma_expression] = STATE(1137), - [sym_conditional_expression] = STATE(605), - [sym_assignment_expression] = STATE(605), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(605), - [sym_binary_expression] = STATE(605), - [sym_update_expression] = STATE(605), - [sym_cast_expression] = STATE(605), - [sym_sizeof_expression] = STATE(605), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(605), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(605), - [sym_concatenated_string] = STATE(605), - [sym_string_literal] = STATE(386), - [sym__empty_declaration] = STATE(37), - [sym_macro_type_specifier] = STATE(744), - [aux_sym_translation_unit_repeat1] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), + [sym_preproc_include] = STATE(33), + [sym_preproc_def] = STATE(33), + [sym_preproc_function_def] = STATE(33), + [sym_preproc_call] = STATE(33), + [sym_preproc_if] = STATE(33), + [sym_preproc_ifdef] = STATE(33), + [sym_function_definition] = STATE(33), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_specifiers] = STATE(785), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(33), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), + [sym__type_specifier] = STATE(749), + [sym_sized_type_specifier] = STATE(749), + [sym_enum_specifier] = STATE(749), + [sym_struct_specifier] = STATE(749), + [sym_union_specifier] = STATE(749), + [sym_labeled_statement] = STATE(33), + [sym_expression_statement] = STATE(33), + [sym_if_statement] = STATE(33), + [sym_switch_statement] = STATE(33), + [sym_case_statement] = STATE(33), + [sym_while_statement] = STATE(33), + [sym_do_statement] = STATE(33), + [sym_for_statement] = STATE(33), + [sym_return_statement] = STATE(33), + [sym_break_statement] = STATE(33), + [sym_continue_statement] = STATE(33), + [sym_goto_statement] = STATE(33), + [sym__expression] = STATE(615), + [sym_comma_expression] = STATE(1128), + [sym_conditional_expression] = STATE(615), + [sym_assignment_expression] = STATE(615), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(615), + [sym_binary_expression] = STATE(615), + [sym_update_expression] = STATE(615), + [sym_cast_expression] = STATE(615), + [sym_sizeof_expression] = STATE(615), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(615), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(615), + [sym_concatenated_string] = STATE(615), + [sym_string_literal] = STATE(380), + [sym__empty_declaration] = STATE(33), + [sym_macro_type_specifier] = STATE(749), + [aux_sym_translation_unit_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), [sym_identifier] = ACTIONS(292), [aux_sym_preproc_include_token1] = ACTIONS(294), [aux_sym_preproc_def_token1] = ACTIONS(296), @@ -8074,8 +8327,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(75), [sym_number_literal] = ACTIONS(338), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), [sym_true] = ACTIONS(340), [sym_false] = ACTIONS(340), @@ -8092,17 +8351,17 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(22), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_specifiers] = STATE(785), + [sym__declaration_specifiers] = STATE(780), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(568), + [sym_attribute_specifier] = STATE(570), [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), - [sym__type_specifier] = STATE(739), - [sym_sized_type_specifier] = STATE(739), - [sym_enum_specifier] = STATE(739), - [sym_struct_specifier] = STATE(739), - [sym_union_specifier] = STATE(739), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), + [sym__type_specifier] = STATE(743), + [sym_sized_type_specifier] = STATE(743), + [sym_enum_specifier] = STATE(743), + [sym_struct_specifier] = STATE(743), + [sym_union_specifier] = STATE(743), [sym_labeled_statement] = STATE(22), [sym_expression_statement] = STATE(22), [sym_if_statement] = STATE(22), @@ -8115,29 +8374,29 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(22), [sym_continue_statement] = STATE(22), [sym_goto_statement] = STATE(22), - [sym__expression] = STATE(592), + [sym__expression] = STATE(594), [sym_comma_expression] = STATE(1051), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(386), + [sym_conditional_expression] = STATE(594), + [sym_assignment_expression] = STATE(594), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(594), + [sym_binary_expression] = STATE(594), + [sym_update_expression] = STATE(594), + [sym_cast_expression] = STATE(594), + [sym_sizeof_expression] = STATE(594), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(594), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(594), + [sym_concatenated_string] = STATE(594), + [sym_string_literal] = STATE(380), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(739), + [sym_macro_type_specifier] = STATE(743), [aux_sym_translation_unit_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), [ts_builtin_sym_end] = ACTIONS(342), [sym_identifier] = ACTIONS(344), [aux_sym_preproc_include_token1] = ACTIONS(347), @@ -8190,8 +8449,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(277), [sym_number_literal] = ACTIONS(410), [anon_sym_L_SQUOTE] = ACTIONS(283), + [anon_sym_u_SQUOTE] = ACTIONS(283), + [anon_sym_U_SQUOTE] = ACTIONS(283), + [anon_sym_u8_SQUOTE] = ACTIONS(283), [anon_sym_SQUOTE] = ACTIONS(283), [anon_sym_L_DQUOTE] = ACTIONS(286), + [anon_sym_u_DQUOTE] = ACTIONS(286), + [anon_sym_U_DQUOTE] = ACTIONS(286), + [anon_sym_u8_DQUOTE] = ACTIONS(286), [anon_sym_DQUOTE] = ACTIONS(286), [sym_true] = ACTIONS(413), [sym_false] = ACTIONS(413), @@ -8199,75 +8464,75 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [23] = { - [sym_preproc_include] = STATE(27), - [sym_preproc_def] = STATE(27), - [sym_preproc_function_def] = STATE(27), - [sym_preproc_call] = STATE(27), - [sym_preproc_if] = STATE(27), - [sym_preproc_ifdef] = STATE(27), - [sym_function_definition] = STATE(27), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_specifiers] = STATE(781), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), - [sym__type_specifier] = STATE(743), - [sym_sized_type_specifier] = STATE(743), - [sym_enum_specifier] = STATE(743), - [sym_struct_specifier] = STATE(743), - [sym_union_specifier] = STATE(743), - [sym_labeled_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_if_statement] = STATE(27), - [sym_switch_statement] = STATE(27), - [sym_case_statement] = STATE(27), - [sym_while_statement] = STATE(27), - [sym_do_statement] = STATE(27), - [sym_for_statement] = STATE(27), - [sym_return_statement] = STATE(27), - [sym_break_statement] = STATE(27), - [sym_continue_statement] = STATE(27), - [sym_goto_statement] = STATE(27), - [sym__expression] = STATE(593), - [sym_comma_expression] = STATE(1015), - [sym_conditional_expression] = STATE(593), - [sym_assignment_expression] = STATE(593), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(593), - [sym_binary_expression] = STATE(593), - [sym_update_expression] = STATE(593), - [sym_cast_expression] = STATE(593), - [sym_sizeof_expression] = STATE(593), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(593), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(593), - [sym_concatenated_string] = STATE(593), - [sym_string_literal] = STATE(386), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(743), - [aux_sym_translation_unit_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), - [sym_identifier] = ACTIONS(416), - [aux_sym_preproc_include_token1] = ACTIONS(418), - [aux_sym_preproc_def_token1] = ACTIONS(420), - [aux_sym_preproc_if_token1] = ACTIONS(422), - [aux_sym_preproc_if_token2] = ACTIONS(424), - [aux_sym_preproc_ifdef_token1] = ACTIONS(426), - [aux_sym_preproc_ifdef_token2] = ACTIONS(426), - [sym_preproc_directive] = ACTIONS(428), - [anon_sym_SEMI] = ACTIONS(430), - [anon_sym_typedef] = ACTIONS(432), - [anon_sym_extern] = ACTIONS(434), + [sym_preproc_include] = STATE(36), + [sym_preproc_def] = STATE(36), + [sym_preproc_function_def] = STATE(36), + [sym_preproc_call] = STATE(36), + [sym_preproc_if] = STATE(36), + [sym_preproc_ifdef] = STATE(36), + [sym_function_definition] = STATE(36), + [sym_declaration] = STATE(36), + [sym_type_definition] = STATE(36), + [sym__declaration_specifiers] = STATE(785), + [sym_linkage_specification] = STATE(36), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(36), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), + [sym__type_specifier] = STATE(749), + [sym_sized_type_specifier] = STATE(749), + [sym_enum_specifier] = STATE(749), + [sym_struct_specifier] = STATE(749), + [sym_union_specifier] = STATE(749), + [sym_labeled_statement] = STATE(36), + [sym_expression_statement] = STATE(36), + [sym_if_statement] = STATE(36), + [sym_switch_statement] = STATE(36), + [sym_case_statement] = STATE(36), + [sym_while_statement] = STATE(36), + [sym_do_statement] = STATE(36), + [sym_for_statement] = STATE(36), + [sym_return_statement] = STATE(36), + [sym_break_statement] = STATE(36), + [sym_continue_statement] = STATE(36), + [sym_goto_statement] = STATE(36), + [sym__expression] = STATE(615), + [sym_comma_expression] = STATE(1128), + [sym_conditional_expression] = STATE(615), + [sym_assignment_expression] = STATE(615), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(615), + [sym_binary_expression] = STATE(615), + [sym_update_expression] = STATE(615), + [sym_cast_expression] = STATE(615), + [sym_sizeof_expression] = STATE(615), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(615), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(615), + [sym_concatenated_string] = STATE(615), + [sym_string_literal] = STATE(380), + [sym__empty_declaration] = STATE(36), + [sym_macro_type_specifier] = STATE(749), + [aux_sym_translation_unit_repeat1] = STATE(36), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [sym_identifier] = ACTIONS(292), + [aux_sym_preproc_include_token1] = ACTIONS(294), + [aux_sym_preproc_def_token1] = ACTIONS(296), + [aux_sym_preproc_if_token1] = ACTIONS(298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(300), + [aux_sym_preproc_ifdef_token2] = ACTIONS(300), + [sym_preproc_directive] = ACTIONS(302), + [anon_sym_SEMI] = ACTIONS(304), + [anon_sym_typedef] = ACTIONS(306), + [anon_sym_extern] = ACTIONS(308), [anon_sym___attribute__] = ACTIONS(25), [anon_sym_LPAREN2] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_RBRACE] = ACTIONS(416), [anon_sym_STAR] = ACTIONS(31), [anon_sym_static] = ACTIONS(33), [anon_sym_auto] = ACTIONS(33), @@ -8281,21 +8546,21 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(37), [anon_sym_long] = ACTIONS(37), [anon_sym_short] = ACTIONS(37), - [sym_primitive_type] = ACTIONS(438), + [sym_primitive_type] = ACTIONS(314), [anon_sym_enum] = ACTIONS(41), [anon_sym_struct] = ACTIONS(43), [anon_sym_union] = ACTIONS(45), - [anon_sym_if] = ACTIONS(440), - [anon_sym_switch] = ACTIONS(442), - [anon_sym_case] = ACTIONS(444), - [anon_sym_default] = ACTIONS(446), - [anon_sym_while] = ACTIONS(448), - [anon_sym_do] = ACTIONS(450), - [anon_sym_for] = ACTIONS(452), - [anon_sym_return] = ACTIONS(454), - [anon_sym_break] = ACTIONS(456), - [anon_sym_continue] = ACTIONS(458), - [anon_sym_goto] = ACTIONS(460), + [anon_sym_if] = ACTIONS(316), + [anon_sym_switch] = ACTIONS(318), + [anon_sym_case] = ACTIONS(320), + [anon_sym_default] = ACTIONS(322), + [anon_sym_while] = ACTIONS(324), + [anon_sym_do] = ACTIONS(326), + [anon_sym_for] = ACTIONS(328), + [anon_sym_return] = ACTIONS(330), + [anon_sym_break] = ACTIONS(332), + [anon_sym_continue] = ACTIONS(334), + [anon_sym_goto] = ACTIONS(336), [anon_sym_AMP] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(69), @@ -8304,72 +8569,78 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(462), + [sym_number_literal] = ACTIONS(338), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(464), - [sym_false] = ACTIONS(464), - [sym_null] = ACTIONS(464), + [sym_true] = ACTIONS(340), + [sym_false] = ACTIONS(340), + [sym_null] = ACTIONS(340), [sym_comment] = ACTIONS(3), }, [24] = { - [sym_preproc_include] = STATE(25), - [sym_preproc_def] = STATE(25), - [sym_preproc_function_def] = STATE(25), - [sym_preproc_call] = STATE(25), - [sym_preproc_if] = STATE(25), - [sym_preproc_ifdef] = STATE(25), - [sym_function_definition] = STATE(25), - [sym_declaration] = STATE(25), - [sym_type_definition] = STATE(25), - [sym__declaration_specifiers] = STATE(790), - [sym_linkage_specification] = STATE(25), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(25), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), - [sym__type_specifier] = STATE(744), - [sym_sized_type_specifier] = STATE(744), - [sym_enum_specifier] = STATE(744), - [sym_struct_specifier] = STATE(744), - [sym_union_specifier] = STATE(744), - [sym_labeled_statement] = STATE(25), - [sym_expression_statement] = STATE(25), - [sym_if_statement] = STATE(25), - [sym_switch_statement] = STATE(25), - [sym_case_statement] = STATE(25), - [sym_while_statement] = STATE(25), - [sym_do_statement] = STATE(25), - [sym_for_statement] = STATE(25), - [sym_return_statement] = STATE(25), - [sym_break_statement] = STATE(25), - [sym_continue_statement] = STATE(25), - [sym_goto_statement] = STATE(25), - [sym__expression] = STATE(605), - [sym_comma_expression] = STATE(1137), - [sym_conditional_expression] = STATE(605), - [sym_assignment_expression] = STATE(605), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(605), - [sym_binary_expression] = STATE(605), - [sym_update_expression] = STATE(605), - [sym_cast_expression] = STATE(605), - [sym_sizeof_expression] = STATE(605), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(605), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(605), - [sym_concatenated_string] = STATE(605), - [sym_string_literal] = STATE(386), - [sym__empty_declaration] = STATE(25), - [sym_macro_type_specifier] = STATE(744), - [aux_sym_translation_unit_repeat1] = STATE(25), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), + [sym_preproc_include] = STATE(27), + [sym_preproc_def] = STATE(27), + [sym_preproc_function_def] = STATE(27), + [sym_preproc_call] = STATE(27), + [sym_preproc_if] = STATE(27), + [sym_preproc_ifdef] = STATE(27), + [sym_function_definition] = STATE(27), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_specifiers] = STATE(785), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), + [sym__type_specifier] = STATE(749), + [sym_sized_type_specifier] = STATE(749), + [sym_enum_specifier] = STATE(749), + [sym_struct_specifier] = STATE(749), + [sym_union_specifier] = STATE(749), + [sym_labeled_statement] = STATE(27), + [sym_expression_statement] = STATE(27), + [sym_if_statement] = STATE(27), + [sym_switch_statement] = STATE(27), + [sym_case_statement] = STATE(27), + [sym_while_statement] = STATE(27), + [sym_do_statement] = STATE(27), + [sym_for_statement] = STATE(27), + [sym_return_statement] = STATE(27), + [sym_break_statement] = STATE(27), + [sym_continue_statement] = STATE(27), + [sym_goto_statement] = STATE(27), + [sym__expression] = STATE(615), + [sym_comma_expression] = STATE(1128), + [sym_conditional_expression] = STATE(615), + [sym_assignment_expression] = STATE(615), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(615), + [sym_binary_expression] = STATE(615), + [sym_update_expression] = STATE(615), + [sym_cast_expression] = STATE(615), + [sym_sizeof_expression] = STATE(615), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(615), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(615), + [sym_concatenated_string] = STATE(615), + [sym_string_literal] = STATE(380), + [sym__empty_declaration] = STATE(27), + [sym_macro_type_specifier] = STATE(749), + [aux_sym_translation_unit_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), [sym_identifier] = ACTIONS(292), [aux_sym_preproc_include_token1] = ACTIONS(294), [aux_sym_preproc_def_token1] = ACTIONS(296), @@ -8383,7 +8654,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(25), [anon_sym_LPAREN2] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_RBRACE] = ACTIONS(466), + [anon_sym_RBRACE] = ACTIONS(418), [anon_sym_STAR] = ACTIONS(31), [anon_sym_static] = ACTIONS(33), [anon_sym_auto] = ACTIONS(33), @@ -8422,8 +8693,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(75), [sym_number_literal] = ACTIONS(338), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), [sym_true] = ACTIONS(340), [sym_false] = ACTIONS(340), @@ -8431,61 +8708,61 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [25] = { - [sym_preproc_include] = STATE(37), - [sym_preproc_def] = STATE(37), - [sym_preproc_function_def] = STATE(37), - [sym_preproc_call] = STATE(37), - [sym_preproc_if] = STATE(37), - [sym_preproc_ifdef] = STATE(37), - [sym_function_definition] = STATE(37), - [sym_declaration] = STATE(37), - [sym_type_definition] = STATE(37), - [sym__declaration_specifiers] = STATE(790), - [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(37), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), - [sym__type_specifier] = STATE(744), - [sym_sized_type_specifier] = STATE(744), - [sym_enum_specifier] = STATE(744), - [sym_struct_specifier] = STATE(744), - [sym_union_specifier] = STATE(744), - [sym_labeled_statement] = STATE(37), - [sym_expression_statement] = STATE(37), - [sym_if_statement] = STATE(37), - [sym_switch_statement] = STATE(37), - [sym_case_statement] = STATE(37), - [sym_while_statement] = STATE(37), - [sym_do_statement] = STATE(37), - [sym_for_statement] = STATE(37), - [sym_return_statement] = STATE(37), - [sym_break_statement] = STATE(37), - [sym_continue_statement] = STATE(37), - [sym_goto_statement] = STATE(37), - [sym__expression] = STATE(605), - [sym_comma_expression] = STATE(1137), - [sym_conditional_expression] = STATE(605), - [sym_assignment_expression] = STATE(605), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(605), - [sym_binary_expression] = STATE(605), - [sym_update_expression] = STATE(605), - [sym_cast_expression] = STATE(605), - [sym_sizeof_expression] = STATE(605), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(605), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(605), - [sym_concatenated_string] = STATE(605), - [sym_string_literal] = STATE(386), - [sym__empty_declaration] = STATE(37), - [sym_macro_type_specifier] = STATE(744), - [aux_sym_translation_unit_repeat1] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), + [sym_preproc_include] = STATE(26), + [sym_preproc_def] = STATE(26), + [sym_preproc_function_def] = STATE(26), + [sym_preproc_call] = STATE(26), + [sym_preproc_if] = STATE(26), + [sym_preproc_ifdef] = STATE(26), + [sym_function_definition] = STATE(26), + [sym_declaration] = STATE(26), + [sym_type_definition] = STATE(26), + [sym__declaration_specifiers] = STATE(785), + [sym_linkage_specification] = STATE(26), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(26), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), + [sym__type_specifier] = STATE(749), + [sym_sized_type_specifier] = STATE(749), + [sym_enum_specifier] = STATE(749), + [sym_struct_specifier] = STATE(749), + [sym_union_specifier] = STATE(749), + [sym_labeled_statement] = STATE(26), + [sym_expression_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_switch_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_do_statement] = STATE(26), + [sym_for_statement] = STATE(26), + [sym_return_statement] = STATE(26), + [sym_break_statement] = STATE(26), + [sym_continue_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym__expression] = STATE(615), + [sym_comma_expression] = STATE(1128), + [sym_conditional_expression] = STATE(615), + [sym_assignment_expression] = STATE(615), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(615), + [sym_binary_expression] = STATE(615), + [sym_update_expression] = STATE(615), + [sym_cast_expression] = STATE(615), + [sym_sizeof_expression] = STATE(615), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(615), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(615), + [sym_concatenated_string] = STATE(615), + [sym_string_literal] = STATE(380), + [sym__empty_declaration] = STATE(26), + [sym_macro_type_specifier] = STATE(749), + [aux_sym_translation_unit_repeat1] = STATE(26), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), [sym_identifier] = ACTIONS(292), [aux_sym_preproc_include_token1] = ACTIONS(294), [aux_sym_preproc_def_token1] = ACTIONS(296), @@ -8499,7 +8776,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(25), [anon_sym_LPAREN2] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_RBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(420), [anon_sym_STAR] = ACTIONS(31), [anon_sym_static] = ACTIONS(33), [anon_sym_auto] = ACTIONS(33), @@ -8538,8 +8815,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(75), [sym_number_literal] = ACTIONS(338), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), [sym_true] = ACTIONS(340), [sym_false] = ACTIONS(340), @@ -8547,61 +8830,61 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [26] = { - [sym_preproc_include] = STATE(37), - [sym_preproc_def] = STATE(37), - [sym_preproc_function_def] = STATE(37), - [sym_preproc_call] = STATE(37), - [sym_preproc_if] = STATE(37), - [sym_preproc_ifdef] = STATE(37), - [sym_function_definition] = STATE(37), - [sym_declaration] = STATE(37), - [sym_type_definition] = STATE(37), - [sym__declaration_specifiers] = STATE(790), - [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(37), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), - [sym__type_specifier] = STATE(744), - [sym_sized_type_specifier] = STATE(744), - [sym_enum_specifier] = STATE(744), - [sym_struct_specifier] = STATE(744), - [sym_union_specifier] = STATE(744), - [sym_labeled_statement] = STATE(37), - [sym_expression_statement] = STATE(37), - [sym_if_statement] = STATE(37), - [sym_switch_statement] = STATE(37), - [sym_case_statement] = STATE(37), - [sym_while_statement] = STATE(37), - [sym_do_statement] = STATE(37), - [sym_for_statement] = STATE(37), - [sym_return_statement] = STATE(37), - [sym_break_statement] = STATE(37), - [sym_continue_statement] = STATE(37), - [sym_goto_statement] = STATE(37), - [sym__expression] = STATE(605), - [sym_comma_expression] = STATE(1137), - [sym_conditional_expression] = STATE(605), - [sym_assignment_expression] = STATE(605), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(605), - [sym_binary_expression] = STATE(605), - [sym_update_expression] = STATE(605), - [sym_cast_expression] = STATE(605), - [sym_sizeof_expression] = STATE(605), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(605), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(605), - [sym_concatenated_string] = STATE(605), - [sym_string_literal] = STATE(386), - [sym__empty_declaration] = STATE(37), - [sym_macro_type_specifier] = STATE(744), - [aux_sym_translation_unit_repeat1] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), + [sym_preproc_include] = STATE(36), + [sym_preproc_def] = STATE(36), + [sym_preproc_function_def] = STATE(36), + [sym_preproc_call] = STATE(36), + [sym_preproc_if] = STATE(36), + [sym_preproc_ifdef] = STATE(36), + [sym_function_definition] = STATE(36), + [sym_declaration] = STATE(36), + [sym_type_definition] = STATE(36), + [sym__declaration_specifiers] = STATE(785), + [sym_linkage_specification] = STATE(36), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(36), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), + [sym__type_specifier] = STATE(749), + [sym_sized_type_specifier] = STATE(749), + [sym_enum_specifier] = STATE(749), + [sym_struct_specifier] = STATE(749), + [sym_union_specifier] = STATE(749), + [sym_labeled_statement] = STATE(36), + [sym_expression_statement] = STATE(36), + [sym_if_statement] = STATE(36), + [sym_switch_statement] = STATE(36), + [sym_case_statement] = STATE(36), + [sym_while_statement] = STATE(36), + [sym_do_statement] = STATE(36), + [sym_for_statement] = STATE(36), + [sym_return_statement] = STATE(36), + [sym_break_statement] = STATE(36), + [sym_continue_statement] = STATE(36), + [sym_goto_statement] = STATE(36), + [sym__expression] = STATE(615), + [sym_comma_expression] = STATE(1128), + [sym_conditional_expression] = STATE(615), + [sym_assignment_expression] = STATE(615), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(615), + [sym_binary_expression] = STATE(615), + [sym_update_expression] = STATE(615), + [sym_cast_expression] = STATE(615), + [sym_sizeof_expression] = STATE(615), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(615), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(615), + [sym_concatenated_string] = STATE(615), + [sym_string_literal] = STATE(380), + [sym__empty_declaration] = STATE(36), + [sym_macro_type_specifier] = STATE(749), + [aux_sym_translation_unit_repeat1] = STATE(36), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), [sym_identifier] = ACTIONS(292), [aux_sym_preproc_include_token1] = ACTIONS(294), [aux_sym_preproc_def_token1] = ACTIONS(296), @@ -8615,7 +8898,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(25), [anon_sym_LPAREN2] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_RBRACE] = ACTIONS(470), + [anon_sym_RBRACE] = ACTIONS(422), [anon_sym_STAR] = ACTIONS(31), [anon_sym_static] = ACTIONS(33), [anon_sym_auto] = ACTIONS(33), @@ -8654,8 +8937,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(75), [sym_number_literal] = ACTIONS(338), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), [sym_true] = ACTIONS(340), [sym_false] = ACTIONS(340), @@ -8663,75 +8952,197 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [27] = { - [sym_preproc_include] = STATE(27), - [sym_preproc_def] = STATE(27), - [sym_preproc_function_def] = STATE(27), - [sym_preproc_call] = STATE(27), - [sym_preproc_if] = STATE(27), - [sym_preproc_ifdef] = STATE(27), - [sym_function_definition] = STATE(27), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_specifiers] = STATE(781), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), - [sym__type_specifier] = STATE(743), - [sym_sized_type_specifier] = STATE(743), - [sym_enum_specifier] = STATE(743), - [sym_struct_specifier] = STATE(743), - [sym_union_specifier] = STATE(743), - [sym_labeled_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_if_statement] = STATE(27), - [sym_switch_statement] = STATE(27), - [sym_case_statement] = STATE(27), - [sym_while_statement] = STATE(27), - [sym_do_statement] = STATE(27), - [sym_for_statement] = STATE(27), - [sym_return_statement] = STATE(27), - [sym_break_statement] = STATE(27), - [sym_continue_statement] = STATE(27), - [sym_goto_statement] = STATE(27), - [sym__expression] = STATE(593), - [sym_comma_expression] = STATE(1015), - [sym_conditional_expression] = STATE(593), - [sym_assignment_expression] = STATE(593), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(593), - [sym_binary_expression] = STATE(593), - [sym_update_expression] = STATE(593), - [sym_cast_expression] = STATE(593), - [sym_sizeof_expression] = STATE(593), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(593), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(593), - [sym_concatenated_string] = STATE(593), - [sym_string_literal] = STATE(386), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(743), - [aux_sym_translation_unit_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), - [sym_identifier] = ACTIONS(472), - [aux_sym_preproc_include_token1] = ACTIONS(475), - [aux_sym_preproc_def_token1] = ACTIONS(478), - [aux_sym_preproc_if_token1] = ACTIONS(481), + [sym_preproc_include] = STATE(36), + [sym_preproc_def] = STATE(36), + [sym_preproc_function_def] = STATE(36), + [sym_preproc_call] = STATE(36), + [sym_preproc_if] = STATE(36), + [sym_preproc_ifdef] = STATE(36), + [sym_function_definition] = STATE(36), + [sym_declaration] = STATE(36), + [sym_type_definition] = STATE(36), + [sym__declaration_specifiers] = STATE(785), + [sym_linkage_specification] = STATE(36), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(36), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), + [sym__type_specifier] = STATE(749), + [sym_sized_type_specifier] = STATE(749), + [sym_enum_specifier] = STATE(749), + [sym_struct_specifier] = STATE(749), + [sym_union_specifier] = STATE(749), + [sym_labeled_statement] = STATE(36), + [sym_expression_statement] = STATE(36), + [sym_if_statement] = STATE(36), + [sym_switch_statement] = STATE(36), + [sym_case_statement] = STATE(36), + [sym_while_statement] = STATE(36), + [sym_do_statement] = STATE(36), + [sym_for_statement] = STATE(36), + [sym_return_statement] = STATE(36), + [sym_break_statement] = STATE(36), + [sym_continue_statement] = STATE(36), + [sym_goto_statement] = STATE(36), + [sym__expression] = STATE(615), + [sym_comma_expression] = STATE(1128), + [sym_conditional_expression] = STATE(615), + [sym_assignment_expression] = STATE(615), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(615), + [sym_binary_expression] = STATE(615), + [sym_update_expression] = STATE(615), + [sym_cast_expression] = STATE(615), + [sym_sizeof_expression] = STATE(615), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(615), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(615), + [sym_concatenated_string] = STATE(615), + [sym_string_literal] = STATE(380), + [sym__empty_declaration] = STATE(36), + [sym_macro_type_specifier] = STATE(749), + [aux_sym_translation_unit_repeat1] = STATE(36), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [sym_identifier] = ACTIONS(292), + [aux_sym_preproc_include_token1] = ACTIONS(294), + [aux_sym_preproc_def_token1] = ACTIONS(296), + [aux_sym_preproc_if_token1] = ACTIONS(298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(300), + [aux_sym_preproc_ifdef_token2] = ACTIONS(300), + [sym_preproc_directive] = ACTIONS(302), + [anon_sym_SEMI] = ACTIONS(304), + [anon_sym_typedef] = ACTIONS(306), + [anon_sym_extern] = ACTIONS(308), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_RBRACE] = ACTIONS(424), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(314), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_if] = ACTIONS(316), + [anon_sym_switch] = ACTIONS(318), + [anon_sym_case] = ACTIONS(320), + [anon_sym_default] = ACTIONS(322), + [anon_sym_while] = ACTIONS(324), + [anon_sym_do] = ACTIONS(326), + [anon_sym_for] = ACTIONS(328), + [anon_sym_return] = ACTIONS(330), + [anon_sym_break] = ACTIONS(332), + [anon_sym_continue] = ACTIONS(334), + [anon_sym_goto] = ACTIONS(336), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(338), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(340), + [sym_false] = ACTIONS(340), + [sym_null] = ACTIONS(340), + [sym_comment] = ACTIONS(3), + }, + [28] = { + [sym_preproc_include] = STATE(28), + [sym_preproc_def] = STATE(28), + [sym_preproc_function_def] = STATE(28), + [sym_preproc_call] = STATE(28), + [sym_preproc_if] = STATE(28), + [sym_preproc_ifdef] = STATE(28), + [sym_function_definition] = STATE(28), + [sym_declaration] = STATE(28), + [sym_type_definition] = STATE(28), + [sym__declaration_specifiers] = STATE(790), + [sym_linkage_specification] = STATE(28), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(28), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), + [sym__type_specifier] = STATE(754), + [sym_sized_type_specifier] = STATE(754), + [sym_enum_specifier] = STATE(754), + [sym_struct_specifier] = STATE(754), + [sym_union_specifier] = STATE(754), + [sym_labeled_statement] = STATE(28), + [sym_expression_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_switch_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_while_statement] = STATE(28), + [sym_do_statement] = STATE(28), + [sym_for_statement] = STATE(28), + [sym_return_statement] = STATE(28), + [sym_break_statement] = STATE(28), + [sym_continue_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__expression] = STATE(605), + [sym_comma_expression] = STATE(1011), + [sym_conditional_expression] = STATE(605), + [sym_assignment_expression] = STATE(605), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(605), + [sym_binary_expression] = STATE(605), + [sym_update_expression] = STATE(605), + [sym_cast_expression] = STATE(605), + [sym_sizeof_expression] = STATE(605), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(605), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(605), + [sym_concatenated_string] = STATE(605), + [sym_string_literal] = STATE(380), + [sym__empty_declaration] = STATE(28), + [sym_macro_type_specifier] = STATE(754), + [aux_sym_translation_unit_repeat1] = STATE(28), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [sym_identifier] = ACTIONS(426), + [aux_sym_preproc_include_token1] = ACTIONS(429), + [aux_sym_preproc_def_token1] = ACTIONS(432), + [aux_sym_preproc_if_token1] = ACTIONS(435), [aux_sym_preproc_if_token2] = ACTIONS(185), - [aux_sym_preproc_ifdef_token1] = ACTIONS(484), - [aux_sym_preproc_ifdef_token2] = ACTIONS(484), - [sym_preproc_directive] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(490), - [anon_sym_typedef] = ACTIONS(493), - [anon_sym_extern] = ACTIONS(496), + [aux_sym_preproc_ifdef_token1] = ACTIONS(438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(438), + [sym_preproc_directive] = ACTIONS(441), + [anon_sym_SEMI] = ACTIONS(444), + [anon_sym_typedef] = ACTIONS(447), + [anon_sym_extern] = ACTIONS(450), [anon_sym___attribute__] = ACTIONS(202), [anon_sym_LPAREN2] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_LBRACE] = ACTIONS(453), [anon_sym_STAR] = ACTIONS(211), [anon_sym_static] = ACTIONS(214), [anon_sym_auto] = ACTIONS(214), @@ -8745,21 +9156,21 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(220), [anon_sym_long] = ACTIONS(220), [anon_sym_short] = ACTIONS(220), - [sym_primitive_type] = ACTIONS(502), + [sym_primitive_type] = ACTIONS(456), [anon_sym_enum] = ACTIONS(226), [anon_sym_struct] = ACTIONS(229), [anon_sym_union] = ACTIONS(232), - [anon_sym_if] = ACTIONS(505), - [anon_sym_switch] = ACTIONS(508), - [anon_sym_case] = ACTIONS(511), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(517), - [anon_sym_do] = ACTIONS(520), - [anon_sym_for] = ACTIONS(523), - [anon_sym_return] = ACTIONS(526), - [anon_sym_break] = ACTIONS(529), - [anon_sym_continue] = ACTIONS(532), - [anon_sym_goto] = ACTIONS(535), + [anon_sym_if] = ACTIONS(459), + [anon_sym_switch] = ACTIONS(462), + [anon_sym_case] = ACTIONS(465), + [anon_sym_default] = ACTIONS(468), + [anon_sym_while] = ACTIONS(471), + [anon_sym_do] = ACTIONS(474), + [anon_sym_for] = ACTIONS(477), + [anon_sym_return] = ACTIONS(480), + [anon_sym_break] = ACTIONS(483), + [anon_sym_continue] = ACTIONS(486), + [anon_sym_goto] = ACTIONS(489), [anon_sym_AMP] = ACTIONS(211), [anon_sym_BANG] = ACTIONS(268), [anon_sym_TILDE] = ACTIONS(268), @@ -8768,72 +9179,78 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(274), [anon_sym_PLUS_PLUS] = ACTIONS(274), [anon_sym_sizeof] = ACTIONS(277), - [sym_number_literal] = ACTIONS(538), + [sym_number_literal] = ACTIONS(492), [anon_sym_L_SQUOTE] = ACTIONS(283), + [anon_sym_u_SQUOTE] = ACTIONS(283), + [anon_sym_U_SQUOTE] = ACTIONS(283), + [anon_sym_u8_SQUOTE] = ACTIONS(283), [anon_sym_SQUOTE] = ACTIONS(283), [anon_sym_L_DQUOTE] = ACTIONS(286), + [anon_sym_u_DQUOTE] = ACTIONS(286), + [anon_sym_U_DQUOTE] = ACTIONS(286), + [anon_sym_u8_DQUOTE] = ACTIONS(286), [anon_sym_DQUOTE] = ACTIONS(286), - [sym_true] = ACTIONS(541), - [sym_false] = ACTIONS(541), - [sym_null] = ACTIONS(541), + [sym_true] = ACTIONS(495), + [sym_false] = ACTIONS(495), + [sym_null] = ACTIONS(495), [sym_comment] = ACTIONS(3), }, - [28] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_specifiers] = STATE(790), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), - [sym__type_specifier] = STATE(744), - [sym_sized_type_specifier] = STATE(744), - [sym_enum_specifier] = STATE(744), - [sym_struct_specifier] = STATE(744), - [sym_union_specifier] = STATE(744), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym__expression] = STATE(605), - [sym_comma_expression] = STATE(1137), - [sym_conditional_expression] = STATE(605), - [sym_assignment_expression] = STATE(605), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(605), - [sym_binary_expression] = STATE(605), - [sym_update_expression] = STATE(605), - [sym_cast_expression] = STATE(605), - [sym_sizeof_expression] = STATE(605), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(605), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(605), - [sym_concatenated_string] = STATE(605), - [sym_string_literal] = STATE(386), - [sym__empty_declaration] = STATE(29), - [sym_macro_type_specifier] = STATE(744), - [aux_sym_translation_unit_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), + [29] = { + [sym_preproc_include] = STATE(31), + [sym_preproc_def] = STATE(31), + [sym_preproc_function_def] = STATE(31), + [sym_preproc_call] = STATE(31), + [sym_preproc_if] = STATE(31), + [sym_preproc_ifdef] = STATE(31), + [sym_function_definition] = STATE(31), + [sym_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_specifiers] = STATE(785), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(31), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), + [sym__type_specifier] = STATE(749), + [sym_sized_type_specifier] = STATE(749), + [sym_enum_specifier] = STATE(749), + [sym_struct_specifier] = STATE(749), + [sym_union_specifier] = STATE(749), + [sym_labeled_statement] = STATE(31), + [sym_expression_statement] = STATE(31), + [sym_if_statement] = STATE(31), + [sym_switch_statement] = STATE(31), + [sym_case_statement] = STATE(31), + [sym_while_statement] = STATE(31), + [sym_do_statement] = STATE(31), + [sym_for_statement] = STATE(31), + [sym_return_statement] = STATE(31), + [sym_break_statement] = STATE(31), + [sym_continue_statement] = STATE(31), + [sym_goto_statement] = STATE(31), + [sym__expression] = STATE(615), + [sym_comma_expression] = STATE(1128), + [sym_conditional_expression] = STATE(615), + [sym_assignment_expression] = STATE(615), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(615), + [sym_binary_expression] = STATE(615), + [sym_update_expression] = STATE(615), + [sym_cast_expression] = STATE(615), + [sym_sizeof_expression] = STATE(615), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(615), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(615), + [sym_concatenated_string] = STATE(615), + [sym_string_literal] = STATE(380), + [sym__empty_declaration] = STATE(31), + [sym_macro_type_specifier] = STATE(749), + [aux_sym_translation_unit_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), [sym_identifier] = ACTIONS(292), [aux_sym_preproc_include_token1] = ACTIONS(294), [aux_sym_preproc_def_token1] = ACTIONS(296), @@ -8847,7 +9264,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(25), [anon_sym_LPAREN2] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_RBRACE] = ACTIONS(544), + [anon_sym_RBRACE] = ACTIONS(498), [anon_sym_STAR] = ACTIONS(31), [anon_sym_static] = ACTIONS(33), [anon_sym_auto] = ACTIONS(33), @@ -8886,70 +9303,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(75), [sym_number_literal] = ACTIONS(338), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), [sym_true] = ACTIONS(340), [sym_false] = ACTIONS(340), [sym_null] = ACTIONS(340), [sym_comment] = ACTIONS(3), }, - [29] = { - [sym_preproc_include] = STATE(37), - [sym_preproc_def] = STATE(37), - [sym_preproc_function_def] = STATE(37), - [sym_preproc_call] = STATE(37), - [sym_preproc_if] = STATE(37), - [sym_preproc_ifdef] = STATE(37), - [sym_function_definition] = STATE(37), - [sym_declaration] = STATE(37), - [sym_type_definition] = STATE(37), - [sym__declaration_specifiers] = STATE(790), - [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(37), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), - [sym__type_specifier] = STATE(744), - [sym_sized_type_specifier] = STATE(744), - [sym_enum_specifier] = STATE(744), - [sym_struct_specifier] = STATE(744), - [sym_union_specifier] = STATE(744), - [sym_labeled_statement] = STATE(37), - [sym_expression_statement] = STATE(37), - [sym_if_statement] = STATE(37), - [sym_switch_statement] = STATE(37), - [sym_case_statement] = STATE(37), - [sym_while_statement] = STATE(37), - [sym_do_statement] = STATE(37), - [sym_for_statement] = STATE(37), - [sym_return_statement] = STATE(37), - [sym_break_statement] = STATE(37), - [sym_continue_statement] = STATE(37), - [sym_goto_statement] = STATE(37), - [sym__expression] = STATE(605), - [sym_comma_expression] = STATE(1137), - [sym_conditional_expression] = STATE(605), - [sym_assignment_expression] = STATE(605), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(605), - [sym_binary_expression] = STATE(605), - [sym_update_expression] = STATE(605), - [sym_cast_expression] = STATE(605), - [sym_sizeof_expression] = STATE(605), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(605), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(605), - [sym_concatenated_string] = STATE(605), - [sym_string_literal] = STATE(386), - [sym__empty_declaration] = STATE(37), - [sym_macro_type_specifier] = STATE(744), - [aux_sym_translation_unit_repeat1] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), + [30] = { + [sym_preproc_include] = STATE(36), + [sym_preproc_def] = STATE(36), + [sym_preproc_function_def] = STATE(36), + [sym_preproc_call] = STATE(36), + [sym_preproc_if] = STATE(36), + [sym_preproc_ifdef] = STATE(36), + [sym_function_definition] = STATE(36), + [sym_declaration] = STATE(36), + [sym_type_definition] = STATE(36), + [sym__declaration_specifiers] = STATE(785), + [sym_linkage_specification] = STATE(36), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(36), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), + [sym__type_specifier] = STATE(749), + [sym_sized_type_specifier] = STATE(749), + [sym_enum_specifier] = STATE(749), + [sym_struct_specifier] = STATE(749), + [sym_union_specifier] = STATE(749), + [sym_labeled_statement] = STATE(36), + [sym_expression_statement] = STATE(36), + [sym_if_statement] = STATE(36), + [sym_switch_statement] = STATE(36), + [sym_case_statement] = STATE(36), + [sym_while_statement] = STATE(36), + [sym_do_statement] = STATE(36), + [sym_for_statement] = STATE(36), + [sym_return_statement] = STATE(36), + [sym_break_statement] = STATE(36), + [sym_continue_statement] = STATE(36), + [sym_goto_statement] = STATE(36), + [sym__expression] = STATE(615), + [sym_comma_expression] = STATE(1128), + [sym_conditional_expression] = STATE(615), + [sym_assignment_expression] = STATE(615), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(615), + [sym_binary_expression] = STATE(615), + [sym_update_expression] = STATE(615), + [sym_cast_expression] = STATE(615), + [sym_sizeof_expression] = STATE(615), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(615), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(615), + [sym_concatenated_string] = STATE(615), + [sym_string_literal] = STATE(380), + [sym__empty_declaration] = STATE(36), + [sym_macro_type_specifier] = STATE(749), + [aux_sym_translation_unit_repeat1] = STATE(36), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), [sym_identifier] = ACTIONS(292), [aux_sym_preproc_include_token1] = ACTIONS(294), [aux_sym_preproc_def_token1] = ACTIONS(296), @@ -8963,7 +9386,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(25), [anon_sym_LPAREN2] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_RBRACE] = ACTIONS(546), + [anon_sym_RBRACE] = ACTIONS(500), [anon_sym_STAR] = ACTIONS(31), [anon_sym_static] = ACTIONS(33), [anon_sym_auto] = ACTIONS(33), @@ -9002,70 +9425,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(75), [sym_number_literal] = ACTIONS(338), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), [sym_true] = ACTIONS(340), [sym_false] = ACTIONS(340), [sym_null] = ACTIONS(340), [sym_comment] = ACTIONS(3), }, - [30] = { - [sym_preproc_include] = STATE(37), - [sym_preproc_def] = STATE(37), - [sym_preproc_function_def] = STATE(37), - [sym_preproc_call] = STATE(37), - [sym_preproc_if] = STATE(37), - [sym_preproc_ifdef] = STATE(37), - [sym_function_definition] = STATE(37), - [sym_declaration] = STATE(37), - [sym_type_definition] = STATE(37), - [sym__declaration_specifiers] = STATE(790), - [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(37), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), - [sym__type_specifier] = STATE(744), - [sym_sized_type_specifier] = STATE(744), - [sym_enum_specifier] = STATE(744), - [sym_struct_specifier] = STATE(744), - [sym_union_specifier] = STATE(744), - [sym_labeled_statement] = STATE(37), - [sym_expression_statement] = STATE(37), - [sym_if_statement] = STATE(37), - [sym_switch_statement] = STATE(37), - [sym_case_statement] = STATE(37), - [sym_while_statement] = STATE(37), - [sym_do_statement] = STATE(37), - [sym_for_statement] = STATE(37), - [sym_return_statement] = STATE(37), - [sym_break_statement] = STATE(37), - [sym_continue_statement] = STATE(37), - [sym_goto_statement] = STATE(37), - [sym__expression] = STATE(605), - [sym_comma_expression] = STATE(1137), - [sym_conditional_expression] = STATE(605), - [sym_assignment_expression] = STATE(605), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(605), - [sym_binary_expression] = STATE(605), - [sym_update_expression] = STATE(605), - [sym_cast_expression] = STATE(605), - [sym_sizeof_expression] = STATE(605), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(605), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(605), - [sym_concatenated_string] = STATE(605), - [sym_string_literal] = STATE(386), - [sym__empty_declaration] = STATE(37), - [sym_macro_type_specifier] = STATE(744), - [aux_sym_translation_unit_repeat1] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), + [31] = { + [sym_preproc_include] = STATE(36), + [sym_preproc_def] = STATE(36), + [sym_preproc_function_def] = STATE(36), + [sym_preproc_call] = STATE(36), + [sym_preproc_if] = STATE(36), + [sym_preproc_ifdef] = STATE(36), + [sym_function_definition] = STATE(36), + [sym_declaration] = STATE(36), + [sym_type_definition] = STATE(36), + [sym__declaration_specifiers] = STATE(785), + [sym_linkage_specification] = STATE(36), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(36), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), + [sym__type_specifier] = STATE(749), + [sym_sized_type_specifier] = STATE(749), + [sym_enum_specifier] = STATE(749), + [sym_struct_specifier] = STATE(749), + [sym_union_specifier] = STATE(749), + [sym_labeled_statement] = STATE(36), + [sym_expression_statement] = STATE(36), + [sym_if_statement] = STATE(36), + [sym_switch_statement] = STATE(36), + [sym_case_statement] = STATE(36), + [sym_while_statement] = STATE(36), + [sym_do_statement] = STATE(36), + [sym_for_statement] = STATE(36), + [sym_return_statement] = STATE(36), + [sym_break_statement] = STATE(36), + [sym_continue_statement] = STATE(36), + [sym_goto_statement] = STATE(36), + [sym__expression] = STATE(615), + [sym_comma_expression] = STATE(1128), + [sym_conditional_expression] = STATE(615), + [sym_assignment_expression] = STATE(615), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(615), + [sym_binary_expression] = STATE(615), + [sym_update_expression] = STATE(615), + [sym_cast_expression] = STATE(615), + [sym_sizeof_expression] = STATE(615), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(615), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(615), + [sym_concatenated_string] = STATE(615), + [sym_string_literal] = STATE(380), + [sym__empty_declaration] = STATE(36), + [sym_macro_type_specifier] = STATE(749), + [aux_sym_translation_unit_repeat1] = STATE(36), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), [sym_identifier] = ACTIONS(292), [aux_sym_preproc_include_token1] = ACTIONS(294), [aux_sym_preproc_def_token1] = ACTIONS(296), @@ -9079,7 +9508,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(25), [anon_sym_LPAREN2] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_RBRACE] = ACTIONS(548), + [anon_sym_RBRACE] = ACTIONS(502), [anon_sym_STAR] = ACTIONS(31), [anon_sym_static] = ACTIONS(33), [anon_sym_auto] = ACTIONS(33), @@ -9118,70 +9547,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(75), [sym_number_literal] = ACTIONS(338), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), [sym_true] = ACTIONS(340), [sym_false] = ACTIONS(340), [sym_null] = ACTIONS(340), [sym_comment] = ACTIONS(3), }, - [31] = { - [sym_preproc_include] = STATE(30), - [sym_preproc_def] = STATE(30), - [sym_preproc_function_def] = STATE(30), - [sym_preproc_call] = STATE(30), - [sym_preproc_if] = STATE(30), - [sym_preproc_ifdef] = STATE(30), - [sym_function_definition] = STATE(30), - [sym_declaration] = STATE(30), - [sym_type_definition] = STATE(30), - [sym__declaration_specifiers] = STATE(790), - [sym_linkage_specification] = STATE(30), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(30), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), - [sym__type_specifier] = STATE(744), - [sym_sized_type_specifier] = STATE(744), - [sym_enum_specifier] = STATE(744), - [sym_struct_specifier] = STATE(744), - [sym_union_specifier] = STATE(744), - [sym_labeled_statement] = STATE(30), - [sym_expression_statement] = STATE(30), - [sym_if_statement] = STATE(30), - [sym_switch_statement] = STATE(30), - [sym_case_statement] = STATE(30), - [sym_while_statement] = STATE(30), - [sym_do_statement] = STATE(30), - [sym_for_statement] = STATE(30), - [sym_return_statement] = STATE(30), - [sym_break_statement] = STATE(30), - [sym_continue_statement] = STATE(30), - [sym_goto_statement] = STATE(30), - [sym__expression] = STATE(605), - [sym_comma_expression] = STATE(1137), - [sym_conditional_expression] = STATE(605), - [sym_assignment_expression] = STATE(605), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(605), - [sym_binary_expression] = STATE(605), - [sym_update_expression] = STATE(605), - [sym_cast_expression] = STATE(605), - [sym_sizeof_expression] = STATE(605), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(605), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(605), - [sym_concatenated_string] = STATE(605), - [sym_string_literal] = STATE(386), - [sym__empty_declaration] = STATE(30), - [sym_macro_type_specifier] = STATE(744), - [aux_sym_translation_unit_repeat1] = STATE(30), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), + [32] = { + [sym_preproc_include] = STATE(34), + [sym_preproc_def] = STATE(34), + [sym_preproc_function_def] = STATE(34), + [sym_preproc_call] = STATE(34), + [sym_preproc_if] = STATE(34), + [sym_preproc_ifdef] = STATE(34), + [sym_function_definition] = STATE(34), + [sym_declaration] = STATE(34), + [sym_type_definition] = STATE(34), + [sym__declaration_specifiers] = STATE(785), + [sym_linkage_specification] = STATE(34), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(34), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), + [sym__type_specifier] = STATE(749), + [sym_sized_type_specifier] = STATE(749), + [sym_enum_specifier] = STATE(749), + [sym_struct_specifier] = STATE(749), + [sym_union_specifier] = STATE(749), + [sym_labeled_statement] = STATE(34), + [sym_expression_statement] = STATE(34), + [sym_if_statement] = STATE(34), + [sym_switch_statement] = STATE(34), + [sym_case_statement] = STATE(34), + [sym_while_statement] = STATE(34), + [sym_do_statement] = STATE(34), + [sym_for_statement] = STATE(34), + [sym_return_statement] = STATE(34), + [sym_break_statement] = STATE(34), + [sym_continue_statement] = STATE(34), + [sym_goto_statement] = STATE(34), + [sym__expression] = STATE(615), + [sym_comma_expression] = STATE(1128), + [sym_conditional_expression] = STATE(615), + [sym_assignment_expression] = STATE(615), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(615), + [sym_binary_expression] = STATE(615), + [sym_update_expression] = STATE(615), + [sym_cast_expression] = STATE(615), + [sym_sizeof_expression] = STATE(615), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(615), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(615), + [sym_concatenated_string] = STATE(615), + [sym_string_literal] = STATE(380), + [sym__empty_declaration] = STATE(34), + [sym_macro_type_specifier] = STATE(749), + [aux_sym_translation_unit_repeat1] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), [sym_identifier] = ACTIONS(292), [aux_sym_preproc_include_token1] = ACTIONS(294), [aux_sym_preproc_def_token1] = ACTIONS(296), @@ -9195,7 +9630,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(25), [anon_sym_LPAREN2] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_RBRACE] = ACTIONS(550), + [anon_sym_RBRACE] = ACTIONS(504), [anon_sym_STAR] = ACTIONS(31), [anon_sym_static] = ACTIONS(33), [anon_sym_auto] = ACTIONS(33), @@ -9234,70 +9669,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(75), [sym_number_literal] = ACTIONS(338), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), [sym_true] = ACTIONS(340), [sym_false] = ACTIONS(340), [sym_null] = ACTIONS(340), [sym_comment] = ACTIONS(3), }, - [32] = { - [sym_preproc_include] = STATE(21), - [sym_preproc_def] = STATE(21), - [sym_preproc_function_def] = STATE(21), - [sym_preproc_call] = STATE(21), - [sym_preproc_if] = STATE(21), - [sym_preproc_ifdef] = STATE(21), - [sym_function_definition] = STATE(21), - [sym_declaration] = STATE(21), - [sym_type_definition] = STATE(21), - [sym__declaration_specifiers] = STATE(790), - [sym_linkage_specification] = STATE(21), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(21), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), - [sym__type_specifier] = STATE(744), - [sym_sized_type_specifier] = STATE(744), - [sym_enum_specifier] = STATE(744), - [sym_struct_specifier] = STATE(744), - [sym_union_specifier] = STATE(744), - [sym_labeled_statement] = STATE(21), - [sym_expression_statement] = STATE(21), - [sym_if_statement] = STATE(21), - [sym_switch_statement] = STATE(21), - [sym_case_statement] = STATE(21), - [sym_while_statement] = STATE(21), - [sym_do_statement] = STATE(21), - [sym_for_statement] = STATE(21), - [sym_return_statement] = STATE(21), - [sym_break_statement] = STATE(21), - [sym_continue_statement] = STATE(21), - [sym_goto_statement] = STATE(21), - [sym__expression] = STATE(605), - [sym_comma_expression] = STATE(1137), - [sym_conditional_expression] = STATE(605), - [sym_assignment_expression] = STATE(605), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(605), - [sym_binary_expression] = STATE(605), - [sym_update_expression] = STATE(605), - [sym_cast_expression] = STATE(605), - [sym_sizeof_expression] = STATE(605), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(605), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(605), - [sym_concatenated_string] = STATE(605), - [sym_string_literal] = STATE(386), - [sym__empty_declaration] = STATE(21), - [sym_macro_type_specifier] = STATE(744), - [aux_sym_translation_unit_repeat1] = STATE(21), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), + [33] = { + [sym_preproc_include] = STATE(36), + [sym_preproc_def] = STATE(36), + [sym_preproc_function_def] = STATE(36), + [sym_preproc_call] = STATE(36), + [sym_preproc_if] = STATE(36), + [sym_preproc_ifdef] = STATE(36), + [sym_function_definition] = STATE(36), + [sym_declaration] = STATE(36), + [sym_type_definition] = STATE(36), + [sym__declaration_specifiers] = STATE(785), + [sym_linkage_specification] = STATE(36), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(36), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), + [sym__type_specifier] = STATE(749), + [sym_sized_type_specifier] = STATE(749), + [sym_enum_specifier] = STATE(749), + [sym_struct_specifier] = STATE(749), + [sym_union_specifier] = STATE(749), + [sym_labeled_statement] = STATE(36), + [sym_expression_statement] = STATE(36), + [sym_if_statement] = STATE(36), + [sym_switch_statement] = STATE(36), + [sym_case_statement] = STATE(36), + [sym_while_statement] = STATE(36), + [sym_do_statement] = STATE(36), + [sym_for_statement] = STATE(36), + [sym_return_statement] = STATE(36), + [sym_break_statement] = STATE(36), + [sym_continue_statement] = STATE(36), + [sym_goto_statement] = STATE(36), + [sym__expression] = STATE(615), + [sym_comma_expression] = STATE(1128), + [sym_conditional_expression] = STATE(615), + [sym_assignment_expression] = STATE(615), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(615), + [sym_binary_expression] = STATE(615), + [sym_update_expression] = STATE(615), + [sym_cast_expression] = STATE(615), + [sym_sizeof_expression] = STATE(615), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(615), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(615), + [sym_concatenated_string] = STATE(615), + [sym_string_literal] = STATE(380), + [sym__empty_declaration] = STATE(36), + [sym_macro_type_specifier] = STATE(749), + [aux_sym_translation_unit_repeat1] = STATE(36), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), [sym_identifier] = ACTIONS(292), [aux_sym_preproc_include_token1] = ACTIONS(294), [aux_sym_preproc_def_token1] = ACTIONS(296), @@ -9311,7 +9752,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(25), [anon_sym_LPAREN2] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_RBRACE] = ACTIONS(552), + [anon_sym_RBRACE] = ACTIONS(506), [anon_sym_STAR] = ACTIONS(31), [anon_sym_static] = ACTIONS(33), [anon_sym_auto] = ACTIONS(33), @@ -9350,70 +9791,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(75), [sym_number_literal] = ACTIONS(338), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), [sym_true] = ACTIONS(340), [sym_false] = ACTIONS(340), [sym_null] = ACTIONS(340), [sym_comment] = ACTIONS(3), }, - [33] = { - [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(790), - [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(42), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), - [sym__type_specifier] = STATE(744), - [sym_sized_type_specifier] = STATE(744), - [sym_enum_specifier] = STATE(744), - [sym_struct_specifier] = STATE(744), - [sym_union_specifier] = STATE(744), - [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(605), - [sym_comma_expression] = STATE(1137), - [sym_conditional_expression] = STATE(605), - [sym_assignment_expression] = STATE(605), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(605), - [sym_binary_expression] = STATE(605), - [sym_update_expression] = STATE(605), - [sym_cast_expression] = STATE(605), - [sym_sizeof_expression] = STATE(605), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(605), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(605), - [sym_concatenated_string] = STATE(605), - [sym_string_literal] = STATE(386), - [sym__empty_declaration] = STATE(42), - [sym_macro_type_specifier] = STATE(744), - [aux_sym_translation_unit_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), + [34] = { + [sym_preproc_include] = STATE(36), + [sym_preproc_def] = STATE(36), + [sym_preproc_function_def] = STATE(36), + [sym_preproc_call] = STATE(36), + [sym_preproc_if] = STATE(36), + [sym_preproc_ifdef] = STATE(36), + [sym_function_definition] = STATE(36), + [sym_declaration] = STATE(36), + [sym_type_definition] = STATE(36), + [sym__declaration_specifiers] = STATE(785), + [sym_linkage_specification] = STATE(36), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(36), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), + [sym__type_specifier] = STATE(749), + [sym_sized_type_specifier] = STATE(749), + [sym_enum_specifier] = STATE(749), + [sym_struct_specifier] = STATE(749), + [sym_union_specifier] = STATE(749), + [sym_labeled_statement] = STATE(36), + [sym_expression_statement] = STATE(36), + [sym_if_statement] = STATE(36), + [sym_switch_statement] = STATE(36), + [sym_case_statement] = STATE(36), + [sym_while_statement] = STATE(36), + [sym_do_statement] = STATE(36), + [sym_for_statement] = STATE(36), + [sym_return_statement] = STATE(36), + [sym_break_statement] = STATE(36), + [sym_continue_statement] = STATE(36), + [sym_goto_statement] = STATE(36), + [sym__expression] = STATE(615), + [sym_comma_expression] = STATE(1128), + [sym_conditional_expression] = STATE(615), + [sym_assignment_expression] = STATE(615), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(615), + [sym_binary_expression] = STATE(615), + [sym_update_expression] = STATE(615), + [sym_cast_expression] = STATE(615), + [sym_sizeof_expression] = STATE(615), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(615), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(615), + [sym_concatenated_string] = STATE(615), + [sym_string_literal] = STATE(380), + [sym__empty_declaration] = STATE(36), + [sym_macro_type_specifier] = STATE(749), + [aux_sym_translation_unit_repeat1] = STATE(36), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), [sym_identifier] = ACTIONS(292), [aux_sym_preproc_include_token1] = ACTIONS(294), [aux_sym_preproc_def_token1] = ACTIONS(296), @@ -9427,7 +9874,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(25), [anon_sym_LPAREN2] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_RBRACE] = ACTIONS(554), + [anon_sym_RBRACE] = ACTIONS(508), [anon_sym_STAR] = ACTIONS(31), [anon_sym_static] = ACTIONS(33), [anon_sym_auto] = ACTIONS(33), @@ -9466,15 +9913,21 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(75), [sym_number_literal] = ACTIONS(338), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), [sym_true] = ACTIONS(340), [sym_false] = ACTIONS(340), [sym_null] = ACTIONS(340), [sym_comment] = ACTIONS(3), }, - [34] = { + [35] = { [sym_preproc_include] = STATE(22), [sym_preproc_def] = STATE(22), [sym_preproc_function_def] = STATE(22), @@ -9484,17 +9937,17 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(22), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_specifiers] = STATE(785), + [sym__declaration_specifiers] = STATE(780), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(568), + [sym_attribute_specifier] = STATE(570), [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), - [sym__type_specifier] = STATE(739), - [sym_sized_type_specifier] = STATE(739), - [sym_enum_specifier] = STATE(739), - [sym_struct_specifier] = STATE(739), - [sym_union_specifier] = STATE(739), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), + [sym__type_specifier] = STATE(743), + [sym_sized_type_specifier] = STATE(743), + [sym_enum_specifier] = STATE(743), + [sym_struct_specifier] = STATE(743), + [sym_union_specifier] = STATE(743), [sym_labeled_statement] = STATE(22), [sym_expression_statement] = STATE(22), [sym_if_statement] = STATE(22), @@ -9507,30 +9960,30 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(22), [sym_continue_statement] = STATE(22), [sym_goto_statement] = STATE(22), - [sym__expression] = STATE(592), + [sym__expression] = STATE(594), [sym_comma_expression] = STATE(1051), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(386), + [sym_conditional_expression] = STATE(594), + [sym_assignment_expression] = STATE(594), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(594), + [sym_binary_expression] = STATE(594), + [sym_update_expression] = STATE(594), + [sym_cast_expression] = STATE(594), + [sym_sizeof_expression] = STATE(594), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(594), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(594), + [sym_concatenated_string] = STATE(594), + [sym_string_literal] = STATE(380), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(739), + [sym_macro_type_specifier] = STATE(743), [aux_sym_translation_unit_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), - [ts_builtin_sym_end] = ACTIONS(556), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [ts_builtin_sym_end] = ACTIONS(510), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), [aux_sym_preproc_def_token1] = ACTIONS(11), @@ -9582,70 +10035,198 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(75), [sym_number_literal] = ACTIONS(77), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [35] = { - [sym_preproc_include] = STATE(37), - [sym_preproc_def] = STATE(37), - [sym_preproc_function_def] = STATE(37), - [sym_preproc_call] = STATE(37), - [sym_preproc_if] = STATE(37), - [sym_preproc_ifdef] = STATE(37), - [sym_function_definition] = STATE(37), - [sym_declaration] = STATE(37), - [sym_type_definition] = STATE(37), - [sym__declaration_specifiers] = STATE(790), - [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(37), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), - [sym__type_specifier] = STATE(744), - [sym_sized_type_specifier] = STATE(744), - [sym_enum_specifier] = STATE(744), - [sym_struct_specifier] = STATE(744), - [sym_union_specifier] = STATE(744), - [sym_labeled_statement] = STATE(37), - [sym_expression_statement] = STATE(37), - [sym_if_statement] = STATE(37), - [sym_switch_statement] = STATE(37), - [sym_case_statement] = STATE(37), - [sym_while_statement] = STATE(37), - [sym_do_statement] = STATE(37), - [sym_for_statement] = STATE(37), - [sym_return_statement] = STATE(37), - [sym_break_statement] = STATE(37), - [sym_continue_statement] = STATE(37), - [sym_goto_statement] = STATE(37), - [sym__expression] = STATE(605), - [sym_comma_expression] = STATE(1137), - [sym_conditional_expression] = STATE(605), - [sym_assignment_expression] = STATE(605), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(605), - [sym_binary_expression] = STATE(605), - [sym_update_expression] = STATE(605), - [sym_cast_expression] = STATE(605), - [sym_sizeof_expression] = STATE(605), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(605), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(605), - [sym_concatenated_string] = STATE(605), - [sym_string_literal] = STATE(386), - [sym__empty_declaration] = STATE(37), - [sym_macro_type_specifier] = STATE(744), - [aux_sym_translation_unit_repeat1] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), + [36] = { + [sym_preproc_include] = STATE(36), + [sym_preproc_def] = STATE(36), + [sym_preproc_function_def] = STATE(36), + [sym_preproc_call] = STATE(36), + [sym_preproc_if] = STATE(36), + [sym_preproc_ifdef] = STATE(36), + [sym_function_definition] = STATE(36), + [sym_declaration] = STATE(36), + [sym_type_definition] = STATE(36), + [sym__declaration_specifiers] = STATE(785), + [sym_linkage_specification] = STATE(36), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(36), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), + [sym__type_specifier] = STATE(749), + [sym_sized_type_specifier] = STATE(749), + [sym_enum_specifier] = STATE(749), + [sym_struct_specifier] = STATE(749), + [sym_union_specifier] = STATE(749), + [sym_labeled_statement] = STATE(36), + [sym_expression_statement] = STATE(36), + [sym_if_statement] = STATE(36), + [sym_switch_statement] = STATE(36), + [sym_case_statement] = STATE(36), + [sym_while_statement] = STATE(36), + [sym_do_statement] = STATE(36), + [sym_for_statement] = STATE(36), + [sym_return_statement] = STATE(36), + [sym_break_statement] = STATE(36), + [sym_continue_statement] = STATE(36), + [sym_goto_statement] = STATE(36), + [sym__expression] = STATE(615), + [sym_comma_expression] = STATE(1128), + [sym_conditional_expression] = STATE(615), + [sym_assignment_expression] = STATE(615), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(615), + [sym_binary_expression] = STATE(615), + [sym_update_expression] = STATE(615), + [sym_cast_expression] = STATE(615), + [sym_sizeof_expression] = STATE(615), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(615), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(615), + [sym_concatenated_string] = STATE(615), + [sym_string_literal] = STATE(380), + [sym__empty_declaration] = STATE(36), + [sym_macro_type_specifier] = STATE(749), + [aux_sym_translation_unit_repeat1] = STATE(36), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [sym_identifier] = ACTIONS(512), + [aux_sym_preproc_include_token1] = ACTIONS(515), + [aux_sym_preproc_def_token1] = ACTIONS(518), + [aux_sym_preproc_if_token1] = ACTIONS(521), + [aux_sym_preproc_ifdef_token1] = ACTIONS(524), + [aux_sym_preproc_ifdef_token2] = ACTIONS(524), + [sym_preproc_directive] = ACTIONS(527), + [anon_sym_SEMI] = ACTIONS(530), + [anon_sym_typedef] = ACTIONS(533), + [anon_sym_extern] = ACTIONS(536), + [anon_sym___attribute__] = ACTIONS(202), + [anon_sym_LPAREN2] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(539), + [anon_sym_RBRACE] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(211), + [anon_sym_static] = ACTIONS(214), + [anon_sym_auto] = ACTIONS(214), + [anon_sym_register] = ACTIONS(214), + [anon_sym_inline] = ACTIONS(214), + [anon_sym_const] = ACTIONS(217), + [anon_sym_volatile] = ACTIONS(217), + [anon_sym_restrict] = ACTIONS(217), + [anon_sym__Atomic] = ACTIONS(217), + [anon_sym_signed] = ACTIONS(220), + [anon_sym_unsigned] = ACTIONS(220), + [anon_sym_long] = ACTIONS(220), + [anon_sym_short] = ACTIONS(220), + [sym_primitive_type] = ACTIONS(542), + [anon_sym_enum] = ACTIONS(226), + [anon_sym_struct] = ACTIONS(229), + [anon_sym_union] = ACTIONS(232), + [anon_sym_if] = ACTIONS(545), + [anon_sym_switch] = ACTIONS(548), + [anon_sym_case] = ACTIONS(551), + [anon_sym_default] = ACTIONS(554), + [anon_sym_while] = ACTIONS(557), + [anon_sym_do] = ACTIONS(560), + [anon_sym_for] = ACTIONS(563), + [anon_sym_return] = ACTIONS(566), + [anon_sym_break] = ACTIONS(569), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(575), + [anon_sym_AMP] = ACTIONS(211), + [anon_sym_BANG] = ACTIONS(268), + [anon_sym_TILDE] = ACTIONS(268), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH] = ACTIONS(274), + [anon_sym_PLUS_PLUS] = ACTIONS(274), + [anon_sym_sizeof] = ACTIONS(277), + [sym_number_literal] = ACTIONS(578), + [anon_sym_L_SQUOTE] = ACTIONS(283), + [anon_sym_u_SQUOTE] = ACTIONS(283), + [anon_sym_U_SQUOTE] = ACTIONS(283), + [anon_sym_u8_SQUOTE] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_L_DQUOTE] = ACTIONS(286), + [anon_sym_u_DQUOTE] = ACTIONS(286), + [anon_sym_U_DQUOTE] = ACTIONS(286), + [anon_sym_u8_DQUOTE] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(286), + [sym_true] = ACTIONS(581), + [sym_false] = ACTIONS(581), + [sym_null] = ACTIONS(581), + [sym_comment] = ACTIONS(3), + }, + [37] = { + [sym_preproc_include] = STATE(23), + [sym_preproc_def] = STATE(23), + [sym_preproc_function_def] = STATE(23), + [sym_preproc_call] = STATE(23), + [sym_preproc_if] = STATE(23), + [sym_preproc_ifdef] = STATE(23), + [sym_function_definition] = STATE(23), + [sym_declaration] = STATE(23), + [sym_type_definition] = STATE(23), + [sym__declaration_specifiers] = STATE(785), + [sym_linkage_specification] = STATE(23), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(23), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), + [sym__type_specifier] = STATE(749), + [sym_sized_type_specifier] = STATE(749), + [sym_enum_specifier] = STATE(749), + [sym_struct_specifier] = STATE(749), + [sym_union_specifier] = STATE(749), + [sym_labeled_statement] = STATE(23), + [sym_expression_statement] = STATE(23), + [sym_if_statement] = STATE(23), + [sym_switch_statement] = STATE(23), + [sym_case_statement] = STATE(23), + [sym_while_statement] = STATE(23), + [sym_do_statement] = STATE(23), + [sym_for_statement] = STATE(23), + [sym_return_statement] = STATE(23), + [sym_break_statement] = STATE(23), + [sym_continue_statement] = STATE(23), + [sym_goto_statement] = STATE(23), + [sym__expression] = STATE(615), + [sym_comma_expression] = STATE(1128), + [sym_conditional_expression] = STATE(615), + [sym_assignment_expression] = STATE(615), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(615), + [sym_binary_expression] = STATE(615), + [sym_update_expression] = STATE(615), + [sym_cast_expression] = STATE(615), + [sym_sizeof_expression] = STATE(615), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(615), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(615), + [sym_concatenated_string] = STATE(615), + [sym_string_literal] = STATE(380), + [sym__empty_declaration] = STATE(23), + [sym_macro_type_specifier] = STATE(749), + [aux_sym_translation_unit_repeat1] = STATE(23), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), [sym_identifier] = ACTIONS(292), [aux_sym_preproc_include_token1] = ACTIONS(294), [aux_sym_preproc_def_token1] = ACTIONS(296), @@ -9659,7 +10240,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(25), [anon_sym_LPAREN2] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_RBRACE] = ACTIONS(558), + [anon_sym_RBRACE] = ACTIONS(584), [anon_sym_STAR] = ACTIONS(31), [anon_sym_static] = ACTIONS(33), [anon_sym_auto] = ACTIONS(33), @@ -9698,84 +10279,90 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(75), [sym_number_literal] = ACTIONS(338), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), [sym_true] = ACTIONS(340), [sym_false] = ACTIONS(340), [sym_null] = ACTIONS(340), [sym_comment] = ACTIONS(3), }, - [36] = { - [sym_preproc_include] = STATE(35), - [sym_preproc_def] = STATE(35), - [sym_preproc_function_def] = STATE(35), - [sym_preproc_call] = STATE(35), - [sym_preproc_if] = STATE(35), - [sym_preproc_ifdef] = STATE(35), - [sym_function_definition] = STATE(35), - [sym_declaration] = STATE(35), - [sym_type_definition] = STATE(35), + [38] = { + [sym_preproc_include] = STATE(28), + [sym_preproc_def] = STATE(28), + [sym_preproc_function_def] = STATE(28), + [sym_preproc_call] = STATE(28), + [sym_preproc_if] = STATE(28), + [sym_preproc_ifdef] = STATE(28), + [sym_function_definition] = STATE(28), + [sym_declaration] = STATE(28), + [sym_type_definition] = STATE(28), [sym__declaration_specifiers] = STATE(790), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), - [sym__type_specifier] = STATE(744), - [sym_sized_type_specifier] = STATE(744), - [sym_enum_specifier] = STATE(744), - [sym_struct_specifier] = STATE(744), - [sym_union_specifier] = STATE(744), - [sym_labeled_statement] = STATE(35), - [sym_expression_statement] = STATE(35), - [sym_if_statement] = STATE(35), - [sym_switch_statement] = STATE(35), - [sym_case_statement] = STATE(35), - [sym_while_statement] = STATE(35), - [sym_do_statement] = STATE(35), - [sym_for_statement] = STATE(35), - [sym_return_statement] = STATE(35), - [sym_break_statement] = STATE(35), - [sym_continue_statement] = STATE(35), - [sym_goto_statement] = STATE(35), + [sym_linkage_specification] = STATE(28), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(28), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), + [sym__type_specifier] = STATE(754), + [sym_sized_type_specifier] = STATE(754), + [sym_enum_specifier] = STATE(754), + [sym_struct_specifier] = STATE(754), + [sym_union_specifier] = STATE(754), + [sym_labeled_statement] = STATE(28), + [sym_expression_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_switch_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_while_statement] = STATE(28), + [sym_do_statement] = STATE(28), + [sym_for_statement] = STATE(28), + [sym_return_statement] = STATE(28), + [sym_break_statement] = STATE(28), + [sym_continue_statement] = STATE(28), + [sym_goto_statement] = STATE(28), [sym__expression] = STATE(605), - [sym_comma_expression] = STATE(1137), + [sym_comma_expression] = STATE(1011), [sym_conditional_expression] = STATE(605), [sym_assignment_expression] = STATE(605), - [sym_pointer_expression] = STATE(440), + [sym_pointer_expression] = STATE(505), [sym_unary_expression] = STATE(605), [sym_binary_expression] = STATE(605), [sym_update_expression] = STATE(605), [sym_cast_expression] = STATE(605), [sym_sizeof_expression] = STATE(605), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), [sym_compound_literal_expression] = STATE(605), - [sym_parenthesized_expression] = STATE(440), + [sym_parenthesized_expression] = STATE(505), [sym_char_literal] = STATE(605), [sym_concatenated_string] = STATE(605), - [sym_string_literal] = STATE(386), - [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(744), - [aux_sym_translation_unit_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), - [sym_identifier] = ACTIONS(292), - [aux_sym_preproc_include_token1] = ACTIONS(294), - [aux_sym_preproc_def_token1] = ACTIONS(296), - [aux_sym_preproc_if_token1] = ACTIONS(298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(300), - [aux_sym_preproc_ifdef_token2] = ACTIONS(300), - [sym_preproc_directive] = ACTIONS(302), - [anon_sym_SEMI] = ACTIONS(304), - [anon_sym_typedef] = ACTIONS(306), - [anon_sym_extern] = ACTIONS(308), + [sym_string_literal] = STATE(380), + [sym__empty_declaration] = STATE(28), + [sym_macro_type_specifier] = STATE(754), + [aux_sym_translation_unit_repeat1] = STATE(28), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [sym_identifier] = ACTIONS(586), + [aux_sym_preproc_include_token1] = ACTIONS(588), + [aux_sym_preproc_def_token1] = ACTIONS(590), + [aux_sym_preproc_if_token1] = ACTIONS(592), + [aux_sym_preproc_if_token2] = ACTIONS(594), + [aux_sym_preproc_ifdef_token1] = ACTIONS(596), + [aux_sym_preproc_ifdef_token2] = ACTIONS(596), + [sym_preproc_directive] = ACTIONS(598), + [anon_sym_SEMI] = ACTIONS(600), + [anon_sym_typedef] = ACTIONS(602), + [anon_sym_extern] = ACTIONS(604), [anon_sym___attribute__] = ACTIONS(25), [anon_sym_LPAREN2] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_RBRACE] = ACTIONS(560), + [anon_sym_LBRACE] = ACTIONS(606), [anon_sym_STAR] = ACTIONS(31), [anon_sym_static] = ACTIONS(33), [anon_sym_auto] = ACTIONS(33), @@ -9789,21 +10376,21 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(37), [anon_sym_long] = ACTIONS(37), [anon_sym_short] = ACTIONS(37), - [sym_primitive_type] = ACTIONS(314), + [sym_primitive_type] = ACTIONS(608), [anon_sym_enum] = ACTIONS(41), [anon_sym_struct] = ACTIONS(43), [anon_sym_union] = ACTIONS(45), - [anon_sym_if] = ACTIONS(316), - [anon_sym_switch] = ACTIONS(318), - [anon_sym_case] = ACTIONS(320), - [anon_sym_default] = ACTIONS(322), - [anon_sym_while] = ACTIONS(324), - [anon_sym_do] = ACTIONS(326), - [anon_sym_for] = ACTIONS(328), - [anon_sym_return] = ACTIONS(330), - [anon_sym_break] = ACTIONS(332), - [anon_sym_continue] = ACTIONS(334), - [anon_sym_goto] = ACTIONS(336), + [anon_sym_if] = ACTIONS(610), + [anon_sym_switch] = ACTIONS(612), + [anon_sym_case] = ACTIONS(614), + [anon_sym_default] = ACTIONS(616), + [anon_sym_while] = ACTIONS(618), + [anon_sym_do] = ACTIONS(620), + [anon_sym_for] = ACTIONS(622), + [anon_sym_return] = ACTIONS(624), + [anon_sym_break] = ACTIONS(626), + [anon_sym_continue] = ACTIONS(628), + [anon_sym_goto] = ACTIONS(630), [anon_sym_AMP] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(69), @@ -9812,188 +10399,78 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(338), + [sym_number_literal] = ACTIONS(632), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(340), - [sym_false] = ACTIONS(340), - [sym_null] = ACTIONS(340), + [sym_true] = ACTIONS(634), + [sym_false] = ACTIONS(634), + [sym_null] = ACTIONS(634), [sym_comment] = ACTIONS(3), }, - [37] = { - [sym_preproc_include] = STATE(37), - [sym_preproc_def] = STATE(37), - [sym_preproc_function_def] = STATE(37), - [sym_preproc_call] = STATE(37), - [sym_preproc_if] = STATE(37), - [sym_preproc_ifdef] = STATE(37), - [sym_function_definition] = STATE(37), - [sym_declaration] = STATE(37), - [sym_type_definition] = STATE(37), - [sym__declaration_specifiers] = STATE(790), - [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(37), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), - [sym__type_specifier] = STATE(744), - [sym_sized_type_specifier] = STATE(744), - [sym_enum_specifier] = STATE(744), - [sym_struct_specifier] = STATE(744), - [sym_union_specifier] = STATE(744), - [sym_labeled_statement] = STATE(37), - [sym_expression_statement] = STATE(37), - [sym_if_statement] = STATE(37), - [sym_switch_statement] = STATE(37), - [sym_case_statement] = STATE(37), - [sym_while_statement] = STATE(37), - [sym_do_statement] = STATE(37), - [sym_for_statement] = STATE(37), - [sym_return_statement] = STATE(37), - [sym_break_statement] = STATE(37), - [sym_continue_statement] = STATE(37), - [sym_goto_statement] = STATE(37), - [sym__expression] = STATE(605), - [sym_comma_expression] = STATE(1137), - [sym_conditional_expression] = STATE(605), - [sym_assignment_expression] = STATE(605), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(605), - [sym_binary_expression] = STATE(605), - [sym_update_expression] = STATE(605), - [sym_cast_expression] = STATE(605), - [sym_sizeof_expression] = STATE(605), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(605), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(605), - [sym_concatenated_string] = STATE(605), - [sym_string_literal] = STATE(386), - [sym__empty_declaration] = STATE(37), - [sym_macro_type_specifier] = STATE(744), - [aux_sym_translation_unit_repeat1] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), - [sym_identifier] = ACTIONS(562), - [aux_sym_preproc_include_token1] = ACTIONS(565), - [aux_sym_preproc_def_token1] = ACTIONS(568), - [aux_sym_preproc_if_token1] = ACTIONS(571), - [aux_sym_preproc_ifdef_token1] = ACTIONS(574), - [aux_sym_preproc_ifdef_token2] = ACTIONS(574), - [sym_preproc_directive] = ACTIONS(577), - [anon_sym_SEMI] = ACTIONS(580), - [anon_sym_typedef] = ACTIONS(583), - [anon_sym_extern] = ACTIONS(586), - [anon_sym___attribute__] = ACTIONS(202), - [anon_sym_LPAREN2] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_RBRACE] = ACTIONS(342), - [anon_sym_STAR] = ACTIONS(211), - [anon_sym_static] = ACTIONS(214), - [anon_sym_auto] = ACTIONS(214), - [anon_sym_register] = ACTIONS(214), - [anon_sym_inline] = ACTIONS(214), - [anon_sym_const] = ACTIONS(217), - [anon_sym_volatile] = ACTIONS(217), - [anon_sym_restrict] = ACTIONS(217), - [anon_sym__Atomic] = ACTIONS(217), - [anon_sym_signed] = ACTIONS(220), - [anon_sym_unsigned] = ACTIONS(220), - [anon_sym_long] = ACTIONS(220), - [anon_sym_short] = ACTIONS(220), - [sym_primitive_type] = ACTIONS(592), - [anon_sym_enum] = ACTIONS(226), - [anon_sym_struct] = ACTIONS(229), - [anon_sym_union] = ACTIONS(232), - [anon_sym_if] = ACTIONS(595), - [anon_sym_switch] = ACTIONS(598), - [anon_sym_case] = ACTIONS(601), - [anon_sym_default] = ACTIONS(604), - [anon_sym_while] = ACTIONS(607), - [anon_sym_do] = ACTIONS(610), - [anon_sym_for] = ACTIONS(613), - [anon_sym_return] = ACTIONS(616), - [anon_sym_break] = ACTIONS(619), - [anon_sym_continue] = ACTIONS(622), - [anon_sym_goto] = ACTIONS(625), - [anon_sym_AMP] = ACTIONS(211), - [anon_sym_BANG] = ACTIONS(268), - [anon_sym_TILDE] = ACTIONS(268), - [anon_sym_DASH] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(271), - [anon_sym_DASH_DASH] = ACTIONS(274), - [anon_sym_PLUS_PLUS] = ACTIONS(274), - [anon_sym_sizeof] = ACTIONS(277), - [sym_number_literal] = ACTIONS(628), - [anon_sym_L_SQUOTE] = ACTIONS(283), - [anon_sym_SQUOTE] = ACTIONS(283), - [anon_sym_L_DQUOTE] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(286), - [sym_true] = ACTIONS(631), - [sym_false] = ACTIONS(631), - [sym_null] = ACTIONS(631), - [sym_comment] = ACTIONS(3), - }, - [38] = { - [sym_preproc_include] = STATE(39), - [sym_preproc_def] = STATE(39), - [sym_preproc_function_def] = STATE(39), - [sym_preproc_call] = STATE(39), - [sym_preproc_if] = STATE(39), - [sym_preproc_ifdef] = STATE(39), - [sym_function_definition] = STATE(39), - [sym_declaration] = STATE(39), - [sym_type_definition] = STATE(39), - [sym__declaration_specifiers] = STATE(790), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), - [sym__type_specifier] = STATE(744), - [sym_sized_type_specifier] = STATE(744), - [sym_enum_specifier] = STATE(744), - [sym_struct_specifier] = STATE(744), - [sym_union_specifier] = STATE(744), - [sym_labeled_statement] = STATE(39), - [sym_expression_statement] = STATE(39), - [sym_if_statement] = STATE(39), - [sym_switch_statement] = STATE(39), - [sym_case_statement] = STATE(39), - [sym_while_statement] = STATE(39), - [sym_do_statement] = STATE(39), - [sym_for_statement] = STATE(39), - [sym_return_statement] = STATE(39), - [sym_break_statement] = STATE(39), - [sym_continue_statement] = STATE(39), - [sym_goto_statement] = STATE(39), - [sym__expression] = STATE(605), - [sym_comma_expression] = STATE(1137), - [sym_conditional_expression] = STATE(605), - [sym_assignment_expression] = STATE(605), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(605), - [sym_binary_expression] = STATE(605), - [sym_update_expression] = STATE(605), - [sym_cast_expression] = STATE(605), - [sym_sizeof_expression] = STATE(605), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(605), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(605), - [sym_concatenated_string] = STATE(605), - [sym_string_literal] = STATE(386), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(744), - [aux_sym_translation_unit_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), + [39] = { + [sym_preproc_include] = STATE(30), + [sym_preproc_def] = STATE(30), + [sym_preproc_function_def] = STATE(30), + [sym_preproc_call] = STATE(30), + [sym_preproc_if] = STATE(30), + [sym_preproc_ifdef] = STATE(30), + [sym_function_definition] = STATE(30), + [sym_declaration] = STATE(30), + [sym_type_definition] = STATE(30), + [sym__declaration_specifiers] = STATE(785), + [sym_linkage_specification] = STATE(30), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(30), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), + [sym__type_specifier] = STATE(749), + [sym_sized_type_specifier] = STATE(749), + [sym_enum_specifier] = STATE(749), + [sym_struct_specifier] = STATE(749), + [sym_union_specifier] = STATE(749), + [sym_labeled_statement] = STATE(30), + [sym_expression_statement] = STATE(30), + [sym_if_statement] = STATE(30), + [sym_switch_statement] = STATE(30), + [sym_case_statement] = STATE(30), + [sym_while_statement] = STATE(30), + [sym_do_statement] = STATE(30), + [sym_for_statement] = STATE(30), + [sym_return_statement] = STATE(30), + [sym_break_statement] = STATE(30), + [sym_continue_statement] = STATE(30), + [sym_goto_statement] = STATE(30), + [sym__expression] = STATE(615), + [sym_comma_expression] = STATE(1128), + [sym_conditional_expression] = STATE(615), + [sym_assignment_expression] = STATE(615), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(615), + [sym_binary_expression] = STATE(615), + [sym_update_expression] = STATE(615), + [sym_cast_expression] = STATE(615), + [sym_sizeof_expression] = STATE(615), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(615), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(615), + [sym_concatenated_string] = STATE(615), + [sym_string_literal] = STATE(380), + [sym__empty_declaration] = STATE(30), + [sym_macro_type_specifier] = STATE(749), + [aux_sym_translation_unit_repeat1] = STATE(30), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), [sym_identifier] = ACTIONS(292), [aux_sym_preproc_include_token1] = ACTIONS(294), [aux_sym_preproc_def_token1] = ACTIONS(296), @@ -10007,7 +10484,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(25), [anon_sym_LPAREN2] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_RBRACE] = ACTIONS(634), + [anon_sym_RBRACE] = ACTIONS(636), [anon_sym_STAR] = ACTIONS(31), [anon_sym_static] = ACTIONS(33), [anon_sym_auto] = ACTIONS(33), @@ -10046,70 +10523,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(75), [sym_number_literal] = ACTIONS(338), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), [sym_true] = ACTIONS(340), [sym_false] = ACTIONS(340), [sym_null] = ACTIONS(340), [sym_comment] = ACTIONS(3), }, - [39] = { - [sym_preproc_include] = STATE(37), - [sym_preproc_def] = STATE(37), - [sym_preproc_function_def] = STATE(37), - [sym_preproc_call] = STATE(37), - [sym_preproc_if] = STATE(37), - [sym_preproc_ifdef] = STATE(37), - [sym_function_definition] = STATE(37), - [sym_declaration] = STATE(37), - [sym_type_definition] = STATE(37), - [sym__declaration_specifiers] = STATE(790), - [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(37), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), - [sym__type_specifier] = STATE(744), - [sym_sized_type_specifier] = STATE(744), - [sym_enum_specifier] = STATE(744), - [sym_struct_specifier] = STATE(744), - [sym_union_specifier] = STATE(744), - [sym_labeled_statement] = STATE(37), - [sym_expression_statement] = STATE(37), - [sym_if_statement] = STATE(37), - [sym_switch_statement] = STATE(37), - [sym_case_statement] = STATE(37), - [sym_while_statement] = STATE(37), - [sym_do_statement] = STATE(37), - [sym_for_statement] = STATE(37), - [sym_return_statement] = STATE(37), - [sym_break_statement] = STATE(37), - [sym_continue_statement] = STATE(37), - [sym_goto_statement] = STATE(37), - [sym__expression] = STATE(605), - [sym_comma_expression] = STATE(1137), - [sym_conditional_expression] = STATE(605), - [sym_assignment_expression] = STATE(605), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(605), - [sym_binary_expression] = STATE(605), - [sym_update_expression] = STATE(605), - [sym_cast_expression] = STATE(605), - [sym_sizeof_expression] = STATE(605), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(605), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(605), - [sym_concatenated_string] = STATE(605), - [sym_string_literal] = STATE(386), - [sym__empty_declaration] = STATE(37), - [sym_macro_type_specifier] = STATE(744), - [aux_sym_translation_unit_repeat1] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), + [40] = { + [sym_preproc_include] = STATE(41), + [sym_preproc_def] = STATE(41), + [sym_preproc_function_def] = STATE(41), + [sym_preproc_call] = STATE(41), + [sym_preproc_if] = STATE(41), + [sym_preproc_ifdef] = STATE(41), + [sym_function_definition] = STATE(41), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_specifiers] = STATE(785), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(41), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), + [sym__type_specifier] = STATE(749), + [sym_sized_type_specifier] = STATE(749), + [sym_enum_specifier] = STATE(749), + [sym_struct_specifier] = STATE(749), + [sym_union_specifier] = STATE(749), + [sym_labeled_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_case_statement] = STATE(41), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_goto_statement] = STATE(41), + [sym__expression] = STATE(615), + [sym_comma_expression] = STATE(1128), + [sym_conditional_expression] = STATE(615), + [sym_assignment_expression] = STATE(615), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(615), + [sym_binary_expression] = STATE(615), + [sym_update_expression] = STATE(615), + [sym_cast_expression] = STATE(615), + [sym_sizeof_expression] = STATE(615), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(615), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(615), + [sym_concatenated_string] = STATE(615), + [sym_string_literal] = STATE(380), + [sym__empty_declaration] = STATE(41), + [sym_macro_type_specifier] = STATE(749), + [aux_sym_translation_unit_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), [sym_identifier] = ACTIONS(292), [aux_sym_preproc_include_token1] = ACTIONS(294), [aux_sym_preproc_def_token1] = ACTIONS(296), @@ -10123,7 +10606,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(25), [anon_sym_LPAREN2] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_RBRACE] = ACTIONS(636), + [anon_sym_RBRACE] = ACTIONS(638), [anon_sym_STAR] = ACTIONS(31), [anon_sym_static] = ACTIONS(33), [anon_sym_auto] = ACTIONS(33), @@ -10162,186 +10645,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(75), [sym_number_literal] = ACTIONS(338), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), [sym_true] = ACTIONS(340), [sym_false] = ACTIONS(340), [sym_null] = ACTIONS(340), [sym_comment] = ACTIONS(3), }, - [40] = { - [sym_preproc_include] = STATE(23), - [sym_preproc_def] = STATE(23), - [sym_preproc_function_def] = STATE(23), - [sym_preproc_call] = STATE(23), - [sym_preproc_if] = STATE(23), - [sym_preproc_ifdef] = STATE(23), - [sym_function_definition] = STATE(23), - [sym_declaration] = STATE(23), - [sym_type_definition] = STATE(23), - [sym__declaration_specifiers] = STATE(781), - [sym_linkage_specification] = STATE(23), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(23), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), - [sym__type_specifier] = STATE(743), - [sym_sized_type_specifier] = STATE(743), - [sym_enum_specifier] = STATE(743), - [sym_struct_specifier] = STATE(743), - [sym_union_specifier] = STATE(743), - [sym_labeled_statement] = STATE(23), - [sym_expression_statement] = STATE(23), - [sym_if_statement] = STATE(23), - [sym_switch_statement] = STATE(23), - [sym_case_statement] = STATE(23), - [sym_while_statement] = STATE(23), - [sym_do_statement] = STATE(23), - [sym_for_statement] = STATE(23), - [sym_return_statement] = STATE(23), - [sym_break_statement] = STATE(23), - [sym_continue_statement] = STATE(23), - [sym_goto_statement] = STATE(23), - [sym__expression] = STATE(593), - [sym_comma_expression] = STATE(1015), - [sym_conditional_expression] = STATE(593), - [sym_assignment_expression] = STATE(593), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(593), - [sym_binary_expression] = STATE(593), - [sym_update_expression] = STATE(593), - [sym_cast_expression] = STATE(593), - [sym_sizeof_expression] = STATE(593), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(593), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(593), - [sym_concatenated_string] = STATE(593), - [sym_string_literal] = STATE(386), - [sym__empty_declaration] = STATE(23), - [sym_macro_type_specifier] = STATE(743), - [aux_sym_translation_unit_repeat1] = STATE(23), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), - [sym_identifier] = ACTIONS(416), - [aux_sym_preproc_include_token1] = ACTIONS(418), - [aux_sym_preproc_def_token1] = ACTIONS(420), - [aux_sym_preproc_if_token1] = ACTIONS(422), - [aux_sym_preproc_if_token2] = ACTIONS(638), - [aux_sym_preproc_ifdef_token1] = ACTIONS(426), - [aux_sym_preproc_ifdef_token2] = ACTIONS(426), - [sym_preproc_directive] = ACTIONS(428), - [anon_sym_SEMI] = ACTIONS(430), - [anon_sym_typedef] = ACTIONS(432), - [anon_sym_extern] = ACTIONS(434), - [anon_sym___attribute__] = ACTIONS(25), - [anon_sym_LPAREN2] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(436), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_static] = ACTIONS(33), - [anon_sym_auto] = ACTIONS(33), - [anon_sym_register] = ACTIONS(33), - [anon_sym_inline] = ACTIONS(33), - [anon_sym_const] = ACTIONS(35), - [anon_sym_volatile] = ACTIONS(35), - [anon_sym_restrict] = ACTIONS(35), - [anon_sym__Atomic] = ACTIONS(35), - [anon_sym_signed] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(37), - [anon_sym_long] = ACTIONS(37), - [anon_sym_short] = ACTIONS(37), - [sym_primitive_type] = ACTIONS(438), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_struct] = ACTIONS(43), - [anon_sym_union] = ACTIONS(45), - [anon_sym_if] = ACTIONS(440), - [anon_sym_switch] = ACTIONS(442), - [anon_sym_case] = ACTIONS(444), - [anon_sym_default] = ACTIONS(446), - [anon_sym_while] = ACTIONS(448), - [anon_sym_do] = ACTIONS(450), - [anon_sym_for] = ACTIONS(452), - [anon_sym_return] = ACTIONS(454), - [anon_sym_break] = ACTIONS(456), - [anon_sym_continue] = ACTIONS(458), - [anon_sym_goto] = ACTIONS(460), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(462), - [anon_sym_L_SQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(79), - [anon_sym_L_DQUOTE] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(464), - [sym_false] = ACTIONS(464), - [sym_null] = ACTIONS(464), - [sym_comment] = ACTIONS(3), - }, [41] = { - [sym_preproc_include] = STATE(26), - [sym_preproc_def] = STATE(26), - [sym_preproc_function_def] = STATE(26), - [sym_preproc_call] = STATE(26), - [sym_preproc_if] = STATE(26), - [sym_preproc_ifdef] = STATE(26), - [sym_function_definition] = STATE(26), - [sym_declaration] = STATE(26), - [sym_type_definition] = STATE(26), - [sym__declaration_specifiers] = STATE(790), - [sym_linkage_specification] = STATE(26), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(26), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), - [sym__type_specifier] = STATE(744), - [sym_sized_type_specifier] = STATE(744), - [sym_enum_specifier] = STATE(744), - [sym_struct_specifier] = STATE(744), - [sym_union_specifier] = STATE(744), - [sym_labeled_statement] = STATE(26), - [sym_expression_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_switch_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_do_statement] = STATE(26), - [sym_for_statement] = STATE(26), - [sym_return_statement] = STATE(26), - [sym_break_statement] = STATE(26), - [sym_continue_statement] = STATE(26), - [sym_goto_statement] = STATE(26), - [sym__expression] = STATE(605), - [sym_comma_expression] = STATE(1137), - [sym_conditional_expression] = STATE(605), - [sym_assignment_expression] = STATE(605), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(605), - [sym_binary_expression] = STATE(605), - [sym_update_expression] = STATE(605), - [sym_cast_expression] = STATE(605), - [sym_sizeof_expression] = STATE(605), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(605), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(605), - [sym_concatenated_string] = STATE(605), - [sym_string_literal] = STATE(386), - [sym__empty_declaration] = STATE(26), - [sym_macro_type_specifier] = STATE(744), - [aux_sym_translation_unit_repeat1] = STATE(26), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), + [sym_preproc_include] = STATE(36), + [sym_preproc_def] = STATE(36), + [sym_preproc_function_def] = STATE(36), + [sym_preproc_call] = STATE(36), + [sym_preproc_if] = STATE(36), + [sym_preproc_ifdef] = STATE(36), + [sym_function_definition] = STATE(36), + [sym_declaration] = STATE(36), + [sym_type_definition] = STATE(36), + [sym__declaration_specifiers] = STATE(785), + [sym_linkage_specification] = STATE(36), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(36), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), + [sym__type_specifier] = STATE(749), + [sym_sized_type_specifier] = STATE(749), + [sym_enum_specifier] = STATE(749), + [sym_struct_specifier] = STATE(749), + [sym_union_specifier] = STATE(749), + [sym_labeled_statement] = STATE(36), + [sym_expression_statement] = STATE(36), + [sym_if_statement] = STATE(36), + [sym_switch_statement] = STATE(36), + [sym_case_statement] = STATE(36), + [sym_while_statement] = STATE(36), + [sym_do_statement] = STATE(36), + [sym_for_statement] = STATE(36), + [sym_return_statement] = STATE(36), + [sym_break_statement] = STATE(36), + [sym_continue_statement] = STATE(36), + [sym_goto_statement] = STATE(36), + [sym__expression] = STATE(615), + [sym_comma_expression] = STATE(1128), + [sym_conditional_expression] = STATE(615), + [sym_assignment_expression] = STATE(615), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(615), + [sym_binary_expression] = STATE(615), + [sym_update_expression] = STATE(615), + [sym_cast_expression] = STATE(615), + [sym_sizeof_expression] = STATE(615), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(615), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(615), + [sym_concatenated_string] = STATE(615), + [sym_string_literal] = STATE(380), + [sym__empty_declaration] = STATE(36), + [sym_macro_type_specifier] = STATE(749), + [aux_sym_translation_unit_repeat1] = STATE(36), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), [sym_identifier] = ACTIONS(292), [aux_sym_preproc_include_token1] = ACTIONS(294), [aux_sym_preproc_def_token1] = ACTIONS(296), @@ -10394,8 +10767,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(75), [sym_number_literal] = ACTIONS(338), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), [sym_true] = ACTIONS(340), [sym_false] = ACTIONS(340), @@ -10403,75 +10782,75 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [42] = { - [sym_preproc_include] = STATE(37), - [sym_preproc_def] = STATE(37), - [sym_preproc_function_def] = STATE(37), - [sym_preproc_call] = STATE(37), - [sym_preproc_if] = STATE(37), - [sym_preproc_ifdef] = STATE(37), - [sym_function_definition] = STATE(37), - [sym_declaration] = STATE(37), - [sym_type_definition] = STATE(37), + [sym_preproc_include] = STATE(38), + [sym_preproc_def] = STATE(38), + [sym_preproc_function_def] = STATE(38), + [sym_preproc_call] = STATE(38), + [sym_preproc_if] = STATE(38), + [sym_preproc_ifdef] = STATE(38), + [sym_function_definition] = STATE(38), + [sym_declaration] = STATE(38), + [sym_type_definition] = STATE(38), [sym__declaration_specifiers] = STATE(790), - [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(37), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), - [sym__type_specifier] = STATE(744), - [sym_sized_type_specifier] = STATE(744), - [sym_enum_specifier] = STATE(744), - [sym_struct_specifier] = STATE(744), - [sym_union_specifier] = STATE(744), - [sym_labeled_statement] = STATE(37), - [sym_expression_statement] = STATE(37), - [sym_if_statement] = STATE(37), - [sym_switch_statement] = STATE(37), - [sym_case_statement] = STATE(37), - [sym_while_statement] = STATE(37), - [sym_do_statement] = STATE(37), - [sym_for_statement] = STATE(37), - [sym_return_statement] = STATE(37), - [sym_break_statement] = STATE(37), - [sym_continue_statement] = STATE(37), - [sym_goto_statement] = STATE(37), + [sym_linkage_specification] = STATE(38), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(38), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), + [sym__type_specifier] = STATE(754), + [sym_sized_type_specifier] = STATE(754), + [sym_enum_specifier] = STATE(754), + [sym_struct_specifier] = STATE(754), + [sym_union_specifier] = STATE(754), + [sym_labeled_statement] = STATE(38), + [sym_expression_statement] = STATE(38), + [sym_if_statement] = STATE(38), + [sym_switch_statement] = STATE(38), + [sym_case_statement] = STATE(38), + [sym_while_statement] = STATE(38), + [sym_do_statement] = STATE(38), + [sym_for_statement] = STATE(38), + [sym_return_statement] = STATE(38), + [sym_break_statement] = STATE(38), + [sym_continue_statement] = STATE(38), + [sym_goto_statement] = STATE(38), [sym__expression] = STATE(605), - [sym_comma_expression] = STATE(1137), + [sym_comma_expression] = STATE(1011), [sym_conditional_expression] = STATE(605), [sym_assignment_expression] = STATE(605), - [sym_pointer_expression] = STATE(440), + [sym_pointer_expression] = STATE(505), [sym_unary_expression] = STATE(605), [sym_binary_expression] = STATE(605), [sym_update_expression] = STATE(605), [sym_cast_expression] = STATE(605), [sym_sizeof_expression] = STATE(605), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), [sym_compound_literal_expression] = STATE(605), - [sym_parenthesized_expression] = STATE(440), + [sym_parenthesized_expression] = STATE(505), [sym_char_literal] = STATE(605), [sym_concatenated_string] = STATE(605), - [sym_string_literal] = STATE(386), - [sym__empty_declaration] = STATE(37), - [sym_macro_type_specifier] = STATE(744), - [aux_sym_translation_unit_repeat1] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), - [sym_identifier] = ACTIONS(292), - [aux_sym_preproc_include_token1] = ACTIONS(294), - [aux_sym_preproc_def_token1] = ACTIONS(296), - [aux_sym_preproc_if_token1] = ACTIONS(298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(300), - [aux_sym_preproc_ifdef_token2] = ACTIONS(300), - [sym_preproc_directive] = ACTIONS(302), - [anon_sym_SEMI] = ACTIONS(304), - [anon_sym_typedef] = ACTIONS(306), - [anon_sym_extern] = ACTIONS(308), + [sym_string_literal] = STATE(380), + [sym__empty_declaration] = STATE(38), + [sym_macro_type_specifier] = STATE(754), + [aux_sym_translation_unit_repeat1] = STATE(38), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [sym_identifier] = ACTIONS(586), + [aux_sym_preproc_include_token1] = ACTIONS(588), + [aux_sym_preproc_def_token1] = ACTIONS(590), + [aux_sym_preproc_if_token1] = ACTIONS(592), + [aux_sym_preproc_if_token2] = ACTIONS(642), + [aux_sym_preproc_ifdef_token1] = ACTIONS(596), + [aux_sym_preproc_ifdef_token2] = ACTIONS(596), + [sym_preproc_directive] = ACTIONS(598), + [anon_sym_SEMI] = ACTIONS(600), + [anon_sym_typedef] = ACTIONS(602), + [anon_sym_extern] = ACTIONS(604), [anon_sym___attribute__] = ACTIONS(25), [anon_sym_LPAREN2] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_RBRACE] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(606), [anon_sym_STAR] = ACTIONS(31), [anon_sym_static] = ACTIONS(33), [anon_sym_auto] = ACTIONS(33), @@ -10485,21 +10864,21 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(37), [anon_sym_long] = ACTIONS(37), [anon_sym_short] = ACTIONS(37), - [sym_primitive_type] = ACTIONS(314), + [sym_primitive_type] = ACTIONS(608), [anon_sym_enum] = ACTIONS(41), [anon_sym_struct] = ACTIONS(43), [anon_sym_union] = ACTIONS(45), - [anon_sym_if] = ACTIONS(316), - [anon_sym_switch] = ACTIONS(318), - [anon_sym_case] = ACTIONS(320), - [anon_sym_default] = ACTIONS(322), - [anon_sym_while] = ACTIONS(324), - [anon_sym_do] = ACTIONS(326), - [anon_sym_for] = ACTIONS(328), - [anon_sym_return] = ACTIONS(330), - [anon_sym_break] = ACTIONS(332), - [anon_sym_continue] = ACTIONS(334), - [anon_sym_goto] = ACTIONS(336), + [anon_sym_if] = ACTIONS(610), + [anon_sym_switch] = ACTIONS(612), + [anon_sym_case] = ACTIONS(614), + [anon_sym_default] = ACTIONS(616), + [anon_sym_while] = ACTIONS(618), + [anon_sym_do] = ACTIONS(620), + [anon_sym_for] = ACTIONS(622), + [anon_sym_return] = ACTIONS(624), + [anon_sym_break] = ACTIONS(626), + [anon_sym_continue] = ACTIONS(628), + [anon_sym_goto] = ACTIONS(630), [anon_sym_AMP] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(69), @@ -10508,62 +10887,68 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(338), + [sym_number_literal] = ACTIONS(632), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(340), - [sym_false] = ACTIONS(340), - [sym_null] = ACTIONS(340), + [sym_true] = ACTIONS(634), + [sym_false] = ACTIONS(634), + [sym_null] = ACTIONS(634), [sym_comment] = ACTIONS(3), }, [43] = { - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), [sym__declaration_specifiers] = STATE(787), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(45), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), [sym__type_specifier] = STATE(723), [sym_sized_type_specifier] = STATE(723), [sym_enum_specifier] = STATE(723), [sym_struct_specifier] = STATE(723), [sym_union_specifier] = STATE(723), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym__expression] = STATE(598), - [sym_comma_expression] = STATE(1064), - [sym_conditional_expression] = STATE(598), - [sym_assignment_expression] = STATE(598), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(598), - [sym_binary_expression] = STATE(598), - [sym_update_expression] = STATE(598), - [sym_cast_expression] = STATE(598), - [sym_sizeof_expression] = STATE(598), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(598), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(598), - [sym_concatenated_string] = STATE(598), - [sym_string_literal] = STATE(386), + [sym_labeled_statement] = STATE(45), + [sym_expression_statement] = STATE(45), + [sym_if_statement] = STATE(45), + [sym_switch_statement] = STATE(45), + [sym_while_statement] = STATE(45), + [sym_do_statement] = STATE(45), + [sym_for_statement] = STATE(45), + [sym_return_statement] = STATE(45), + [sym_break_statement] = STATE(45), + [sym_continue_statement] = STATE(45), + [sym_goto_statement] = STATE(45), + [sym__expression] = STATE(575), + [sym_comma_expression] = STATE(1080), + [sym_conditional_expression] = STATE(575), + [sym_assignment_expression] = STATE(575), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(575), + [sym_binary_expression] = STATE(575), + [sym_update_expression] = STATE(575), + [sym_cast_expression] = STATE(575), + [sym_sizeof_expression] = STATE(575), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string_literal] = STATE(380), [sym_macro_type_specifier] = STATE(723), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), - [aux_sym_case_statement_repeat1] = STATE(46), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [aux_sym_case_statement_repeat1] = STATE(45), [sym_identifier] = ACTIONS(644), [aux_sym_preproc_include_token1] = ACTIONS(646), [aux_sym_preproc_def_token1] = ACTIONS(646), @@ -10619,8 +11004,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(75), [sym_number_literal] = ACTIONS(135), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), [sym_true] = ACTIONS(137), [sym_false] = ACTIONS(137), @@ -10628,61 +11019,176 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [44] = { - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), + [sym_declaration] = STATE(44), + [sym_type_definition] = STATE(44), + [sym__declaration_specifiers] = STATE(787), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(44), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), + [sym__type_specifier] = STATE(723), + [sym_sized_type_specifier] = STATE(723), + [sym_enum_specifier] = STATE(723), + [sym_struct_specifier] = STATE(723), + [sym_union_specifier] = STATE(723), + [sym_labeled_statement] = STATE(44), + [sym_expression_statement] = STATE(44), + [sym_if_statement] = STATE(44), + [sym_switch_statement] = STATE(44), + [sym_while_statement] = STATE(44), + [sym_do_statement] = STATE(44), + [sym_for_statement] = STATE(44), + [sym_return_statement] = STATE(44), + [sym_break_statement] = STATE(44), + [sym_continue_statement] = STATE(44), + [sym_goto_statement] = STATE(44), + [sym__expression] = STATE(575), + [sym_comma_expression] = STATE(1080), + [sym_conditional_expression] = STATE(575), + [sym_assignment_expression] = STATE(575), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(575), + [sym_binary_expression] = STATE(575), + [sym_update_expression] = STATE(575), + [sym_cast_expression] = STATE(575), + [sym_sizeof_expression] = STATE(575), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string_literal] = STATE(380), + [sym_macro_type_specifier] = STATE(723), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [aux_sym_case_statement_repeat1] = STATE(44), + [sym_identifier] = ACTIONS(650), + [aux_sym_preproc_include_token1] = ACTIONS(653), + [aux_sym_preproc_def_token1] = ACTIONS(653), + [aux_sym_preproc_if_token1] = ACTIONS(653), + [aux_sym_preproc_if_token2] = ACTIONS(653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(653), + [aux_sym_preproc_ifdef_token2] = ACTIONS(653), + [aux_sym_preproc_else_token1] = ACTIONS(653), + [aux_sym_preproc_elif_token1] = ACTIONS(653), + [sym_preproc_directive] = ACTIONS(653), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_typedef] = ACTIONS(658), + [anon_sym_extern] = ACTIONS(661), + [anon_sym___attribute__] = ACTIONS(664), + [anon_sym_LPAREN2] = ACTIONS(667), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_static] = ACTIONS(661), + [anon_sym_auto] = ACTIONS(661), + [anon_sym_register] = ACTIONS(661), + [anon_sym_inline] = ACTIONS(661), + [anon_sym_const] = ACTIONS(676), + [anon_sym_volatile] = ACTIONS(676), + [anon_sym_restrict] = ACTIONS(676), + [anon_sym__Atomic] = ACTIONS(676), + [anon_sym_signed] = ACTIONS(679), + [anon_sym_unsigned] = ACTIONS(679), + [anon_sym_long] = ACTIONS(679), + [anon_sym_short] = ACTIONS(679), + [sym_primitive_type] = ACTIONS(682), + [anon_sym_enum] = ACTIONS(685), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_union] = ACTIONS(691), + [anon_sym_if] = ACTIONS(694), + [anon_sym_else] = ACTIONS(653), + [anon_sym_switch] = ACTIONS(697), + [anon_sym_case] = ACTIONS(653), + [anon_sym_default] = ACTIONS(653), + [anon_sym_while] = ACTIONS(700), + [anon_sym_do] = ACTIONS(703), + [anon_sym_for] = ACTIONS(706), + [anon_sym_return] = ACTIONS(709), + [anon_sym_break] = ACTIONS(712), + [anon_sym_continue] = ACTIONS(715), + [anon_sym_goto] = ACTIONS(718), + [anon_sym_AMP] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_PLUS] = ACTIONS(724), + [anon_sym_DASH_DASH] = ACTIONS(727), + [anon_sym_PLUS_PLUS] = ACTIONS(727), + [anon_sym_sizeof] = ACTIONS(730), + [sym_number_literal] = ACTIONS(733), + [anon_sym_L_SQUOTE] = ACTIONS(736), + [anon_sym_u_SQUOTE] = ACTIONS(736), + [anon_sym_U_SQUOTE] = ACTIONS(736), + [anon_sym_u8_SQUOTE] = ACTIONS(736), + [anon_sym_SQUOTE] = ACTIONS(736), + [anon_sym_L_DQUOTE] = ACTIONS(739), + [anon_sym_u_DQUOTE] = ACTIONS(739), + [anon_sym_U_DQUOTE] = ACTIONS(739), + [anon_sym_u8_DQUOTE] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(739), + [sym_true] = ACTIONS(742), + [sym_false] = ACTIONS(742), + [sym_null] = ACTIONS(742), + [sym_comment] = ACTIONS(3), + }, + [45] = { + [sym_declaration] = STATE(44), + [sym_type_definition] = STATE(44), [sym__declaration_specifiers] = STATE(787), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(44), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), [sym__type_specifier] = STATE(723), [sym_sized_type_specifier] = STATE(723), [sym_enum_specifier] = STATE(723), [sym_struct_specifier] = STATE(723), [sym_union_specifier] = STATE(723), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym__expression] = STATE(598), - [sym_comma_expression] = STATE(1064), - [sym_conditional_expression] = STATE(598), - [sym_assignment_expression] = STATE(598), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(598), - [sym_binary_expression] = STATE(598), - [sym_update_expression] = STATE(598), - [sym_cast_expression] = STATE(598), - [sym_sizeof_expression] = STATE(598), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(598), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(598), - [sym_concatenated_string] = STATE(598), - [sym_string_literal] = STATE(386), + [sym_labeled_statement] = STATE(44), + [sym_expression_statement] = STATE(44), + [sym_if_statement] = STATE(44), + [sym_switch_statement] = STATE(44), + [sym_while_statement] = STATE(44), + [sym_do_statement] = STATE(44), + [sym_for_statement] = STATE(44), + [sym_return_statement] = STATE(44), + [sym_break_statement] = STATE(44), + [sym_continue_statement] = STATE(44), + [sym_goto_statement] = STATE(44), + [sym__expression] = STATE(575), + [sym_comma_expression] = STATE(1080), + [sym_conditional_expression] = STATE(575), + [sym_assignment_expression] = STATE(575), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(575), + [sym_binary_expression] = STATE(575), + [sym_update_expression] = STATE(575), + [sym_cast_expression] = STATE(575), + [sym_sizeof_expression] = STATE(575), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string_literal] = STATE(380), [sym_macro_type_specifier] = STATE(723), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), - [aux_sym_case_statement_repeat1] = STATE(46), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [aux_sym_case_statement_repeat1] = STATE(44), [sym_identifier] = ACTIONS(644), - [aux_sym_preproc_include_token1] = ACTIONS(650), - [aux_sym_preproc_def_token1] = ACTIONS(650), - [aux_sym_preproc_if_token1] = ACTIONS(650), - [aux_sym_preproc_if_token2] = ACTIONS(650), - [aux_sym_preproc_ifdef_token1] = ACTIONS(650), - [aux_sym_preproc_ifdef_token2] = ACTIONS(650), - [aux_sym_preproc_else_token1] = ACTIONS(650), - [aux_sym_preproc_elif_token1] = ACTIONS(650), - [sym_preproc_directive] = ACTIONS(650), + [aux_sym_preproc_include_token1] = ACTIONS(745), + [aux_sym_preproc_def_token1] = ACTIONS(745), + [aux_sym_preproc_if_token1] = ACTIONS(745), + [aux_sym_preproc_if_token2] = ACTIONS(745), + [aux_sym_preproc_ifdef_token1] = ACTIONS(745), + [aux_sym_preproc_ifdef_token2] = ACTIONS(745), + [aux_sym_preproc_else_token1] = ACTIONS(745), + [aux_sym_preproc_elif_token1] = ACTIONS(745), + [sym_preproc_directive] = ACTIONS(745), [anon_sym_SEMI] = ACTIONS(103), [anon_sym_typedef] = ACTIONS(105), [anon_sym_extern] = ACTIONS(33), @@ -10707,10 +11213,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(43), [anon_sym_union] = ACTIONS(45), [anon_sym_if] = ACTIONS(113), - [anon_sym_else] = ACTIONS(650), + [anon_sym_else] = ACTIONS(745), [anon_sym_switch] = ACTIONS(115), - [anon_sym_case] = ACTIONS(650), - [anon_sym_default] = ACTIONS(650), + [anon_sym_case] = ACTIONS(745), + [anon_sym_default] = ACTIONS(745), [anon_sym_while] = ACTIONS(121), [anon_sym_do] = ACTIONS(123), [anon_sym_for] = ACTIONS(125), @@ -10728,70 +11234,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(75), [sym_number_literal] = ACTIONS(135), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), [sym_true] = ACTIONS(137), [sym_false] = ACTIONS(137), [sym_null] = ACTIONS(137), [sym_comment] = ACTIONS(3), }, - [45] = { - [sym_declaration] = STATE(43), - [sym_type_definition] = STATE(43), + [46] = { + [sym_declaration] = STATE(47), + [sym_type_definition] = STATE(47), [sym__declaration_specifiers] = STATE(787), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(43), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(47), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), [sym__type_specifier] = STATE(723), [sym_sized_type_specifier] = STATE(723), [sym_enum_specifier] = STATE(723), [sym_struct_specifier] = STATE(723), [sym_union_specifier] = STATE(723), - [sym_labeled_statement] = STATE(43), - [sym_expression_statement] = STATE(43), - [sym_if_statement] = STATE(43), - [sym_switch_statement] = STATE(43), - [sym_while_statement] = STATE(43), - [sym_do_statement] = STATE(43), - [sym_for_statement] = STATE(43), - [sym_return_statement] = STATE(43), - [sym_break_statement] = STATE(43), - [sym_continue_statement] = STATE(43), - [sym_goto_statement] = STATE(43), - [sym__expression] = STATE(598), - [sym_comma_expression] = STATE(1064), - [sym_conditional_expression] = STATE(598), - [sym_assignment_expression] = STATE(598), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(598), - [sym_binary_expression] = STATE(598), - [sym_update_expression] = STATE(598), - [sym_cast_expression] = STATE(598), - [sym_sizeof_expression] = STATE(598), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(598), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(598), - [sym_concatenated_string] = STATE(598), - [sym_string_literal] = STATE(386), + [sym_labeled_statement] = STATE(47), + [sym_expression_statement] = STATE(47), + [sym_if_statement] = STATE(47), + [sym_switch_statement] = STATE(47), + [sym_while_statement] = STATE(47), + [sym_do_statement] = STATE(47), + [sym_for_statement] = STATE(47), + [sym_return_statement] = STATE(47), + [sym_break_statement] = STATE(47), + [sym_continue_statement] = STATE(47), + [sym_goto_statement] = STATE(47), + [sym__expression] = STATE(575), + [sym_comma_expression] = STATE(1080), + [sym_conditional_expression] = STATE(575), + [sym_assignment_expression] = STATE(575), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(575), + [sym_binary_expression] = STATE(575), + [sym_update_expression] = STATE(575), + [sym_cast_expression] = STATE(575), + [sym_sizeof_expression] = STATE(575), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string_literal] = STATE(380), [sym_macro_type_specifier] = STATE(723), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), - [aux_sym_case_statement_repeat1] = STATE(43), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [aux_sym_case_statement_repeat1] = STATE(47), [sym_identifier] = ACTIONS(644), - [aux_sym_preproc_include_token1] = ACTIONS(652), - [aux_sym_preproc_def_token1] = ACTIONS(652), - [aux_sym_preproc_if_token1] = ACTIONS(652), - [aux_sym_preproc_if_token2] = ACTIONS(652), - [aux_sym_preproc_ifdef_token1] = ACTIONS(652), - [aux_sym_preproc_ifdef_token2] = ACTIONS(652), - [aux_sym_preproc_else_token1] = ACTIONS(652), - [aux_sym_preproc_elif_token1] = ACTIONS(652), - [sym_preproc_directive] = ACTIONS(652), + [aux_sym_preproc_include_token1] = ACTIONS(747), + [aux_sym_preproc_def_token1] = ACTIONS(747), + [aux_sym_preproc_if_token1] = ACTIONS(747), + [aux_sym_preproc_if_token2] = ACTIONS(747), + [aux_sym_preproc_ifdef_token1] = ACTIONS(747), + [aux_sym_preproc_ifdef_token2] = ACTIONS(747), + [aux_sym_preproc_else_token1] = ACTIONS(747), + [aux_sym_preproc_elif_token1] = ACTIONS(747), + [sym_preproc_directive] = ACTIONS(747), [anon_sym_SEMI] = ACTIONS(103), [anon_sym_typedef] = ACTIONS(105), [anon_sym_extern] = ACTIONS(33), @@ -10816,10 +11328,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(43), [anon_sym_union] = ACTIONS(45), [anon_sym_if] = ACTIONS(113), - [anon_sym_else] = ACTIONS(652), + [anon_sym_else] = ACTIONS(747), [anon_sym_switch] = ACTIONS(115), - [anon_sym_case] = ACTIONS(652), - [anon_sym_default] = ACTIONS(652), + [anon_sym_case] = ACTIONS(747), + [anon_sym_default] = ACTIONS(747), [anon_sym_while] = ACTIONS(121), [anon_sym_do] = ACTIONS(123), [anon_sym_for] = ACTIONS(125), @@ -10837,131 +11349,28 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(75), [sym_number_literal] = ACTIONS(135), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), [sym_true] = ACTIONS(137), [sym_false] = ACTIONS(137), [sym_null] = ACTIONS(137), [sym_comment] = ACTIONS(3), }, - [46] = { - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_specifiers] = STATE(787), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), - [sym__type_specifier] = STATE(723), - [sym_sized_type_specifier] = STATE(723), - [sym_enum_specifier] = STATE(723), - [sym_struct_specifier] = STATE(723), - [sym_union_specifier] = STATE(723), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym__expression] = STATE(598), - [sym_comma_expression] = STATE(1064), - [sym_conditional_expression] = STATE(598), - [sym_assignment_expression] = STATE(598), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(598), - [sym_binary_expression] = STATE(598), - [sym_update_expression] = STATE(598), - [sym_cast_expression] = STATE(598), - [sym_sizeof_expression] = STATE(598), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(598), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(598), - [sym_concatenated_string] = STATE(598), - [sym_string_literal] = STATE(386), - [sym_macro_type_specifier] = STATE(723), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), - [aux_sym_case_statement_repeat1] = STATE(46), - [sym_identifier] = ACTIONS(654), - [aux_sym_preproc_include_token1] = ACTIONS(657), - [aux_sym_preproc_def_token1] = ACTIONS(657), - [aux_sym_preproc_if_token1] = ACTIONS(657), - [aux_sym_preproc_if_token2] = ACTIONS(657), - [aux_sym_preproc_ifdef_token1] = ACTIONS(657), - [aux_sym_preproc_ifdef_token2] = ACTIONS(657), - [aux_sym_preproc_else_token1] = ACTIONS(657), - [aux_sym_preproc_elif_token1] = ACTIONS(657), - [sym_preproc_directive] = ACTIONS(657), - [anon_sym_SEMI] = ACTIONS(659), - [anon_sym_typedef] = ACTIONS(662), - [anon_sym_extern] = ACTIONS(665), - [anon_sym___attribute__] = ACTIONS(668), - [anon_sym_LPAREN2] = ACTIONS(671), - [anon_sym_LBRACE] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(677), - [anon_sym_static] = ACTIONS(665), - [anon_sym_auto] = ACTIONS(665), - [anon_sym_register] = ACTIONS(665), - [anon_sym_inline] = ACTIONS(665), - [anon_sym_const] = ACTIONS(680), - [anon_sym_volatile] = ACTIONS(680), - [anon_sym_restrict] = ACTIONS(680), - [anon_sym__Atomic] = ACTIONS(680), - [anon_sym_signed] = ACTIONS(683), - [anon_sym_unsigned] = ACTIONS(683), - [anon_sym_long] = ACTIONS(683), - [anon_sym_short] = ACTIONS(683), - [sym_primitive_type] = ACTIONS(686), - [anon_sym_enum] = ACTIONS(689), - [anon_sym_struct] = ACTIONS(692), - [anon_sym_union] = ACTIONS(695), - [anon_sym_if] = ACTIONS(698), - [anon_sym_else] = ACTIONS(657), - [anon_sym_switch] = ACTIONS(701), - [anon_sym_case] = ACTIONS(657), - [anon_sym_default] = ACTIONS(657), - [anon_sym_while] = ACTIONS(704), - [anon_sym_do] = ACTIONS(707), - [anon_sym_for] = ACTIONS(710), - [anon_sym_return] = ACTIONS(713), - [anon_sym_break] = ACTIONS(716), - [anon_sym_continue] = ACTIONS(719), - [anon_sym_goto] = ACTIONS(722), - [anon_sym_AMP] = ACTIONS(677), - [anon_sym_BANG] = ACTIONS(725), - [anon_sym_TILDE] = ACTIONS(725), - [anon_sym_DASH] = ACTIONS(728), - [anon_sym_PLUS] = ACTIONS(728), - [anon_sym_DASH_DASH] = ACTIONS(731), - [anon_sym_PLUS_PLUS] = ACTIONS(731), - [anon_sym_sizeof] = ACTIONS(734), - [sym_number_literal] = ACTIONS(737), - [anon_sym_L_SQUOTE] = ACTIONS(740), - [anon_sym_SQUOTE] = ACTIONS(740), - [anon_sym_L_DQUOTE] = ACTIONS(743), - [anon_sym_DQUOTE] = ACTIONS(743), - [sym_true] = ACTIONS(746), - [sym_false] = ACTIONS(746), - [sym_null] = ACTIONS(746), - [sym_comment] = ACTIONS(3), - }, [47] = { [sym_declaration] = STATE(44), [sym_type_definition] = STATE(44), [sym__declaration_specifiers] = STATE(787), - [sym_attribute_specifier] = STATE(568), + [sym_attribute_specifier] = STATE(570), [sym_compound_statement] = STATE(44), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), [sym__type_specifier] = STATE(723), [sym_sized_type_specifier] = STATE(723), [sym_enum_specifier] = STATE(723), @@ -10978,27 +11387,27 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(44), [sym_continue_statement] = STATE(44), [sym_goto_statement] = STATE(44), - [sym__expression] = STATE(598), - [sym_comma_expression] = STATE(1064), - [sym_conditional_expression] = STATE(598), - [sym_assignment_expression] = STATE(598), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(598), - [sym_binary_expression] = STATE(598), - [sym_update_expression] = STATE(598), - [sym_cast_expression] = STATE(598), - [sym_sizeof_expression] = STATE(598), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(598), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(598), - [sym_concatenated_string] = STATE(598), - [sym_string_literal] = STATE(386), + [sym__expression] = STATE(575), + [sym_comma_expression] = STATE(1080), + [sym_conditional_expression] = STATE(575), + [sym_assignment_expression] = STATE(575), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(575), + [sym_binary_expression] = STATE(575), + [sym_update_expression] = STATE(575), + [sym_cast_expression] = STATE(575), + [sym_sizeof_expression] = STATE(575), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string_literal] = STATE(380), [sym_macro_type_specifier] = STATE(723), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), [aux_sym_case_statement_repeat1] = STATE(44), [sym_identifier] = ACTIONS(644), [aux_sym_preproc_include_token1] = ACTIONS(749), @@ -11055,8 +11464,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(75), [sym_number_literal] = ACTIONS(135), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), [sym_true] = ACTIONS(137), [sym_false] = ACTIONS(137), @@ -11064,65 +11479,65 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [48] = { - [sym_declaration] = STATE(52), - [sym_type_definition] = STATE(52), - [sym__declaration_specifiers] = STATE(792), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(52), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), + [sym_declaration] = STATE(59), + [sym_type_definition] = STATE(59), + [sym__declaration_specifiers] = STATE(791), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(59), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), [sym__type_specifier] = STATE(723), [sym_sized_type_specifier] = STATE(723), [sym_enum_specifier] = STATE(723), [sym_struct_specifier] = STATE(723), [sym_union_specifier] = STATE(723), - [sym_labeled_statement] = STATE(52), - [sym_expression_statement] = STATE(52), - [sym_if_statement] = STATE(52), - [sym_switch_statement] = STATE(52), - [sym_while_statement] = STATE(52), - [sym_do_statement] = STATE(52), - [sym_for_statement] = STATE(52), - [sym_return_statement] = STATE(52), - [sym_break_statement] = STATE(52), - [sym_continue_statement] = STATE(52), - [sym_goto_statement] = STATE(52), - [sym__expression] = STATE(593), - [sym_comma_expression] = STATE(1015), - [sym_conditional_expression] = STATE(593), - [sym_assignment_expression] = STATE(593), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(593), - [sym_binary_expression] = STATE(593), - [sym_update_expression] = STATE(593), - [sym_cast_expression] = STATE(593), - [sym_sizeof_expression] = STATE(593), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(593), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(593), - [sym_concatenated_string] = STATE(593), - [sym_string_literal] = STATE(386), + [sym_labeled_statement] = STATE(59), + [sym_expression_statement] = STATE(59), + [sym_if_statement] = STATE(59), + [sym_switch_statement] = STATE(59), + [sym_while_statement] = STATE(59), + [sym_do_statement] = STATE(59), + [sym_for_statement] = STATE(59), + [sym_return_statement] = STATE(59), + [sym_break_statement] = STATE(59), + [sym_continue_statement] = STATE(59), + [sym_goto_statement] = STATE(59), + [sym__expression] = STATE(615), + [sym_comma_expression] = STATE(1128), + [sym_conditional_expression] = STATE(615), + [sym_assignment_expression] = STATE(615), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(615), + [sym_binary_expression] = STATE(615), + [sym_update_expression] = STATE(615), + [sym_cast_expression] = STATE(615), + [sym_sizeof_expression] = STATE(615), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(615), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(615), + [sym_concatenated_string] = STATE(615), + [sym_string_literal] = STATE(380), [sym_macro_type_specifier] = STATE(723), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), - [aux_sym_case_statement_repeat1] = STATE(52), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [aux_sym_case_statement_repeat1] = STATE(59), [sym_identifier] = ACTIONS(751), - [aux_sym_preproc_include_token1] = ACTIONS(650), - [aux_sym_preproc_def_token1] = ACTIONS(650), - [aux_sym_preproc_if_token1] = ACTIONS(650), - [aux_sym_preproc_if_token2] = ACTIONS(650), - [aux_sym_preproc_ifdef_token1] = ACTIONS(650), - [aux_sym_preproc_ifdef_token2] = ACTIONS(650), - [sym_preproc_directive] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(430), - [anon_sym_typedef] = ACTIONS(432), + [aux_sym_preproc_include_token1] = ACTIONS(646), + [aux_sym_preproc_def_token1] = ACTIONS(646), + [aux_sym_preproc_if_token1] = ACTIONS(646), + [aux_sym_preproc_ifdef_token1] = ACTIONS(646), + [aux_sym_preproc_ifdef_token2] = ACTIONS(646), + [sym_preproc_directive] = ACTIONS(646), + [anon_sym_SEMI] = ACTIONS(304), + [anon_sym_typedef] = ACTIONS(306), [anon_sym_extern] = ACTIONS(33), [anon_sym___attribute__] = ACTIONS(25), [anon_sym_LPAREN2] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_RBRACE] = ACTIONS(753), [anon_sym_STAR] = ACTIONS(31), [anon_sym_static] = ACTIONS(33), [anon_sym_auto] = ACTIONS(33), @@ -11140,18 +11555,18 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(41), [anon_sym_struct] = ACTIONS(43), [anon_sym_union] = ACTIONS(45), - [anon_sym_if] = ACTIONS(440), - [anon_sym_else] = ACTIONS(650), - [anon_sym_switch] = ACTIONS(442), - [anon_sym_case] = ACTIONS(650), - [anon_sym_default] = ACTIONS(650), - [anon_sym_while] = ACTIONS(448), - [anon_sym_do] = ACTIONS(450), - [anon_sym_for] = ACTIONS(452), - [anon_sym_return] = ACTIONS(454), - [anon_sym_break] = ACTIONS(456), - [anon_sym_continue] = ACTIONS(458), - [anon_sym_goto] = ACTIONS(460), + [anon_sym_if] = ACTIONS(316), + [anon_sym_else] = ACTIONS(646), + [anon_sym_switch] = ACTIONS(318), + [anon_sym_case] = ACTIONS(646), + [anon_sym_default] = ACTIONS(646), + [anon_sym_while] = ACTIONS(324), + [anon_sym_do] = ACTIONS(326), + [anon_sym_for] = ACTIONS(328), + [anon_sym_return] = ACTIONS(330), + [anon_sym_break] = ACTIONS(332), + [anon_sym_continue] = ACTIONS(334), + [anon_sym_goto] = ACTIONS(336), [anon_sym_AMP] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(69), @@ -11160,183 +11575,195 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(462), + [sym_number_literal] = ACTIONS(338), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(464), - [sym_false] = ACTIONS(464), - [sym_null] = ACTIONS(464), + [sym_true] = ACTIONS(340), + [sym_false] = ACTIONS(340), + [sym_null] = ACTIONS(340), [sym_comment] = ACTIONS(3), }, [49] = { - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_specifiers] = STATE(788), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_specifiers] = STATE(789), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), [sym__type_specifier] = STATE(723), [sym_sized_type_specifier] = STATE(723), [sym_enum_specifier] = STATE(723), [sym_struct_specifier] = STATE(723), [sym_union_specifier] = STATE(723), - [sym_labeled_statement] = STATE(49), - [sym_expression_statement] = STATE(49), - [sym_if_statement] = STATE(49), - [sym_switch_statement] = STATE(49), - [sym_while_statement] = STATE(49), - [sym_do_statement] = STATE(49), - [sym_for_statement] = STATE(49), - [sym_return_statement] = STATE(49), - [sym_break_statement] = STATE(49), - [sym_continue_statement] = STATE(49), - [sym_goto_statement] = STATE(49), + [sym_labeled_statement] = STATE(50), + [sym_expression_statement] = STATE(50), + [sym_if_statement] = STATE(50), + [sym_switch_statement] = STATE(50), + [sym_while_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_break_statement] = STATE(50), + [sym_continue_statement] = STATE(50), + [sym_goto_statement] = STATE(50), [sym__expression] = STATE(605), - [sym_comma_expression] = STATE(1137), + [sym_comma_expression] = STATE(1011), [sym_conditional_expression] = STATE(605), [sym_assignment_expression] = STATE(605), - [sym_pointer_expression] = STATE(440), + [sym_pointer_expression] = STATE(505), [sym_unary_expression] = STATE(605), [sym_binary_expression] = STATE(605), [sym_update_expression] = STATE(605), [sym_cast_expression] = STATE(605), [sym_sizeof_expression] = STATE(605), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), [sym_compound_literal_expression] = STATE(605), - [sym_parenthesized_expression] = STATE(440), + [sym_parenthesized_expression] = STATE(505), [sym_char_literal] = STATE(605), [sym_concatenated_string] = STATE(605), - [sym_string_literal] = STATE(386), + [sym_string_literal] = STATE(380), [sym_macro_type_specifier] = STATE(723), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), - [aux_sym_case_statement_repeat1] = STATE(49), - [sym_identifier] = ACTIONS(753), - [aux_sym_preproc_include_token1] = ACTIONS(657), - [aux_sym_preproc_def_token1] = ACTIONS(657), - [aux_sym_preproc_if_token1] = ACTIONS(657), - [aux_sym_preproc_ifdef_token1] = ACTIONS(657), - [aux_sym_preproc_ifdef_token2] = ACTIONS(657), - [sym_preproc_directive] = ACTIONS(657), - [anon_sym_SEMI] = ACTIONS(756), - [anon_sym_typedef] = ACTIONS(759), - [anon_sym_extern] = ACTIONS(665), - [anon_sym___attribute__] = ACTIONS(668), - [anon_sym_LPAREN2] = ACTIONS(671), - [anon_sym_LBRACE] = ACTIONS(762), - [anon_sym_RBRACE] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(677), - [anon_sym_static] = ACTIONS(665), - [anon_sym_auto] = ACTIONS(665), - [anon_sym_register] = ACTIONS(665), - [anon_sym_inline] = ACTIONS(665), - [anon_sym_const] = ACTIONS(680), - [anon_sym_volatile] = ACTIONS(680), - [anon_sym_restrict] = ACTIONS(680), - [anon_sym__Atomic] = ACTIONS(680), - [anon_sym_signed] = ACTIONS(683), - [anon_sym_unsigned] = ACTIONS(683), - [anon_sym_long] = ACTIONS(683), - [anon_sym_short] = ACTIONS(683), - [sym_primitive_type] = ACTIONS(686), - [anon_sym_enum] = ACTIONS(689), - [anon_sym_struct] = ACTIONS(692), - [anon_sym_union] = ACTIONS(695), - [anon_sym_if] = ACTIONS(767), - [anon_sym_else] = ACTIONS(657), - [anon_sym_switch] = ACTIONS(770), - [anon_sym_case] = ACTIONS(657), - [anon_sym_default] = ACTIONS(657), - [anon_sym_while] = ACTIONS(773), - [anon_sym_do] = ACTIONS(776), - [anon_sym_for] = ACTIONS(779), - [anon_sym_return] = ACTIONS(782), - [anon_sym_break] = ACTIONS(785), - [anon_sym_continue] = ACTIONS(788), - [anon_sym_goto] = ACTIONS(791), - [anon_sym_AMP] = ACTIONS(677), - [anon_sym_BANG] = ACTIONS(725), - [anon_sym_TILDE] = ACTIONS(725), - [anon_sym_DASH] = ACTIONS(728), - [anon_sym_PLUS] = ACTIONS(728), - [anon_sym_DASH_DASH] = ACTIONS(731), - [anon_sym_PLUS_PLUS] = ACTIONS(731), - [anon_sym_sizeof] = ACTIONS(734), - [sym_number_literal] = ACTIONS(794), - [anon_sym_L_SQUOTE] = ACTIONS(740), - [anon_sym_SQUOTE] = ACTIONS(740), - [anon_sym_L_DQUOTE] = ACTIONS(743), - [anon_sym_DQUOTE] = ACTIONS(743), - [sym_true] = ACTIONS(797), - [sym_false] = ACTIONS(797), - [sym_null] = ACTIONS(797), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [aux_sym_case_statement_repeat1] = STATE(50), + [sym_identifier] = ACTIONS(755), + [aux_sym_preproc_include_token1] = ACTIONS(646), + [aux_sym_preproc_def_token1] = ACTIONS(646), + [aux_sym_preproc_if_token1] = ACTIONS(646), + [aux_sym_preproc_if_token2] = ACTIONS(646), + [aux_sym_preproc_ifdef_token1] = ACTIONS(646), + [aux_sym_preproc_ifdef_token2] = ACTIONS(646), + [sym_preproc_directive] = ACTIONS(646), + [anon_sym_SEMI] = ACTIONS(600), + [anon_sym_typedef] = ACTIONS(602), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(648), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_if] = ACTIONS(610), + [anon_sym_else] = ACTIONS(646), + [anon_sym_switch] = ACTIONS(612), + [anon_sym_case] = ACTIONS(646), + [anon_sym_default] = ACTIONS(646), + [anon_sym_while] = ACTIONS(618), + [anon_sym_do] = ACTIONS(620), + [anon_sym_for] = ACTIONS(622), + [anon_sym_return] = ACTIONS(624), + [anon_sym_break] = ACTIONS(626), + [anon_sym_continue] = ACTIONS(628), + [anon_sym_goto] = ACTIONS(630), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(632), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(634), + [sym_false] = ACTIONS(634), + [sym_null] = ACTIONS(634), [sym_comment] = ACTIONS(3), }, [50] = { - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_specifiers] = STATE(788), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), + [sym_declaration] = STATE(53), + [sym_type_definition] = STATE(53), + [sym__declaration_specifiers] = STATE(789), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(53), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), [sym__type_specifier] = STATE(723), [sym_sized_type_specifier] = STATE(723), [sym_enum_specifier] = STATE(723), [sym_struct_specifier] = STATE(723), [sym_union_specifier] = STATE(723), - [sym_labeled_statement] = STATE(49), - [sym_expression_statement] = STATE(49), - [sym_if_statement] = STATE(49), - [sym_switch_statement] = STATE(49), - [sym_while_statement] = STATE(49), - [sym_do_statement] = STATE(49), - [sym_for_statement] = STATE(49), - [sym_return_statement] = STATE(49), - [sym_break_statement] = STATE(49), - [sym_continue_statement] = STATE(49), - [sym_goto_statement] = STATE(49), + [sym_labeled_statement] = STATE(53), + [sym_expression_statement] = STATE(53), + [sym_if_statement] = STATE(53), + [sym_switch_statement] = STATE(53), + [sym_while_statement] = STATE(53), + [sym_do_statement] = STATE(53), + [sym_for_statement] = STATE(53), + [sym_return_statement] = STATE(53), + [sym_break_statement] = STATE(53), + [sym_continue_statement] = STATE(53), + [sym_goto_statement] = STATE(53), [sym__expression] = STATE(605), - [sym_comma_expression] = STATE(1137), + [sym_comma_expression] = STATE(1011), [sym_conditional_expression] = STATE(605), [sym_assignment_expression] = STATE(605), - [sym_pointer_expression] = STATE(440), + [sym_pointer_expression] = STATE(505), [sym_unary_expression] = STATE(605), [sym_binary_expression] = STATE(605), [sym_update_expression] = STATE(605), [sym_cast_expression] = STATE(605), [sym_sizeof_expression] = STATE(605), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), [sym_compound_literal_expression] = STATE(605), - [sym_parenthesized_expression] = STATE(440), + [sym_parenthesized_expression] = STATE(505), [sym_char_literal] = STATE(605), [sym_concatenated_string] = STATE(605), - [sym_string_literal] = STATE(386), + [sym_string_literal] = STATE(380), [sym_macro_type_specifier] = STATE(723), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), - [aux_sym_case_statement_repeat1] = STATE(49), - [sym_identifier] = ACTIONS(800), - [aux_sym_preproc_include_token1] = ACTIONS(646), - [aux_sym_preproc_def_token1] = ACTIONS(646), - [aux_sym_preproc_if_token1] = ACTIONS(646), - [aux_sym_preproc_ifdef_token1] = ACTIONS(646), - [aux_sym_preproc_ifdef_token2] = ACTIONS(646), - [sym_preproc_directive] = ACTIONS(646), - [anon_sym_SEMI] = ACTIONS(304), - [anon_sym_typedef] = ACTIONS(306), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [aux_sym_case_statement_repeat1] = STATE(53), + [sym_identifier] = ACTIONS(755), + [aux_sym_preproc_include_token1] = ACTIONS(745), + [aux_sym_preproc_def_token1] = ACTIONS(745), + [aux_sym_preproc_if_token1] = ACTIONS(745), + [aux_sym_preproc_if_token2] = ACTIONS(745), + [aux_sym_preproc_ifdef_token1] = ACTIONS(745), + [aux_sym_preproc_ifdef_token2] = ACTIONS(745), + [sym_preproc_directive] = ACTIONS(745), + [anon_sym_SEMI] = ACTIONS(600), + [anon_sym_typedef] = ACTIONS(602), [anon_sym_extern] = ACTIONS(33), [anon_sym___attribute__] = ACTIONS(25), [anon_sym_LPAREN2] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_RBRACE] = ACTIONS(802), + [anon_sym_LBRACE] = ACTIONS(606), [anon_sym_STAR] = ACTIONS(31), [anon_sym_static] = ACTIONS(33), [anon_sym_auto] = ACTIONS(33), @@ -11354,18 +11781,18 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(41), [anon_sym_struct] = ACTIONS(43), [anon_sym_union] = ACTIONS(45), - [anon_sym_if] = ACTIONS(316), - [anon_sym_else] = ACTIONS(646), - [anon_sym_switch] = ACTIONS(318), - [anon_sym_case] = ACTIONS(646), - [anon_sym_default] = ACTIONS(646), - [anon_sym_while] = ACTIONS(324), - [anon_sym_do] = ACTIONS(326), - [anon_sym_for] = ACTIONS(328), - [anon_sym_return] = ACTIONS(330), - [anon_sym_break] = ACTIONS(332), - [anon_sym_continue] = ACTIONS(334), - [anon_sym_goto] = ACTIONS(336), + [anon_sym_if] = ACTIONS(610), + [anon_sym_else] = ACTIONS(745), + [anon_sym_switch] = ACTIONS(612), + [anon_sym_case] = ACTIONS(745), + [anon_sym_default] = ACTIONS(745), + [anon_sym_while] = ACTIONS(618), + [anon_sym_do] = ACTIONS(620), + [anon_sym_for] = ACTIONS(622), + [anon_sym_return] = ACTIONS(624), + [anon_sym_break] = ACTIONS(626), + [anon_sym_continue] = ACTIONS(628), + [anon_sym_goto] = ACTIONS(630), [anon_sym_AMP] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(69), @@ -11374,76 +11801,82 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(338), + [sym_number_literal] = ACTIONS(632), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(340), - [sym_false] = ACTIONS(340), - [sym_null] = ACTIONS(340), + [sym_true] = ACTIONS(634), + [sym_false] = ACTIONS(634), + [sym_null] = ACTIONS(634), [sym_comment] = ACTIONS(3), }, [51] = { - [sym_declaration] = STATE(52), - [sym_type_definition] = STATE(52), - [sym__declaration_specifiers] = STATE(792), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(52), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), + [sym_declaration] = STATE(53), + [sym_type_definition] = STATE(53), + [sym__declaration_specifiers] = STATE(789), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(53), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), [sym__type_specifier] = STATE(723), [sym_sized_type_specifier] = STATE(723), [sym_enum_specifier] = STATE(723), [sym_struct_specifier] = STATE(723), [sym_union_specifier] = STATE(723), - [sym_labeled_statement] = STATE(52), - [sym_expression_statement] = STATE(52), - [sym_if_statement] = STATE(52), - [sym_switch_statement] = STATE(52), - [sym_while_statement] = STATE(52), - [sym_do_statement] = STATE(52), - [sym_for_statement] = STATE(52), - [sym_return_statement] = STATE(52), - [sym_break_statement] = STATE(52), - [sym_continue_statement] = STATE(52), - [sym_goto_statement] = STATE(52), - [sym__expression] = STATE(593), - [sym_comma_expression] = STATE(1015), - [sym_conditional_expression] = STATE(593), - [sym_assignment_expression] = STATE(593), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(593), - [sym_binary_expression] = STATE(593), - [sym_update_expression] = STATE(593), - [sym_cast_expression] = STATE(593), - [sym_sizeof_expression] = STATE(593), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(593), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(593), - [sym_concatenated_string] = STATE(593), - [sym_string_literal] = STATE(386), + [sym_labeled_statement] = STATE(53), + [sym_expression_statement] = STATE(53), + [sym_if_statement] = STATE(53), + [sym_switch_statement] = STATE(53), + [sym_while_statement] = STATE(53), + [sym_do_statement] = STATE(53), + [sym_for_statement] = STATE(53), + [sym_return_statement] = STATE(53), + [sym_break_statement] = STATE(53), + [sym_continue_statement] = STATE(53), + [sym_goto_statement] = STATE(53), + [sym__expression] = STATE(605), + [sym_comma_expression] = STATE(1011), + [sym_conditional_expression] = STATE(605), + [sym_assignment_expression] = STATE(605), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(605), + [sym_binary_expression] = STATE(605), + [sym_update_expression] = STATE(605), + [sym_cast_expression] = STATE(605), + [sym_sizeof_expression] = STATE(605), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(605), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(605), + [sym_concatenated_string] = STATE(605), + [sym_string_literal] = STATE(380), [sym_macro_type_specifier] = STATE(723), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), - [aux_sym_case_statement_repeat1] = STATE(52), - [sym_identifier] = ACTIONS(751), - [aux_sym_preproc_include_token1] = ACTIONS(646), - [aux_sym_preproc_def_token1] = ACTIONS(646), - [aux_sym_preproc_if_token1] = ACTIONS(646), - [aux_sym_preproc_if_token2] = ACTIONS(646), - [aux_sym_preproc_ifdef_token1] = ACTIONS(646), - [aux_sym_preproc_ifdef_token2] = ACTIONS(646), - [sym_preproc_directive] = ACTIONS(646), - [anon_sym_SEMI] = ACTIONS(430), - [anon_sym_typedef] = ACTIONS(432), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [aux_sym_case_statement_repeat1] = STATE(53), + [sym_identifier] = ACTIONS(755), + [aux_sym_preproc_include_token1] = ACTIONS(749), + [aux_sym_preproc_def_token1] = ACTIONS(749), + [aux_sym_preproc_if_token1] = ACTIONS(749), + [aux_sym_preproc_if_token2] = ACTIONS(749), + [aux_sym_preproc_ifdef_token1] = ACTIONS(749), + [aux_sym_preproc_ifdef_token2] = ACTIONS(749), + [sym_preproc_directive] = ACTIONS(749), + [anon_sym_SEMI] = ACTIONS(600), + [anon_sym_typedef] = ACTIONS(602), [anon_sym_extern] = ACTIONS(33), [anon_sym___attribute__] = ACTIONS(25), [anon_sym_LPAREN2] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_LBRACE] = ACTIONS(606), [anon_sym_STAR] = ACTIONS(31), [anon_sym_static] = ACTIONS(33), [anon_sym_auto] = ACTIONS(33), @@ -11461,18 +11894,18 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(41), [anon_sym_struct] = ACTIONS(43), [anon_sym_union] = ACTIONS(45), - [anon_sym_if] = ACTIONS(440), - [anon_sym_else] = ACTIONS(646), - [anon_sym_switch] = ACTIONS(442), - [anon_sym_case] = ACTIONS(646), - [anon_sym_default] = ACTIONS(646), - [anon_sym_while] = ACTIONS(448), - [anon_sym_do] = ACTIONS(450), - [anon_sym_for] = ACTIONS(452), - [anon_sym_return] = ACTIONS(454), - [anon_sym_break] = ACTIONS(456), - [anon_sym_continue] = ACTIONS(458), - [anon_sym_goto] = ACTIONS(460), + [anon_sym_if] = ACTIONS(610), + [anon_sym_else] = ACTIONS(749), + [anon_sym_switch] = ACTIONS(612), + [anon_sym_case] = ACTIONS(749), + [anon_sym_default] = ACTIONS(749), + [anon_sym_while] = ACTIONS(618), + [anon_sym_do] = ACTIONS(620), + [anon_sym_for] = ACTIONS(622), + [anon_sym_return] = ACTIONS(624), + [anon_sym_break] = ACTIONS(626), + [anon_sym_continue] = ACTIONS(628), + [anon_sym_goto] = ACTIONS(630), [anon_sym_AMP] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(69), @@ -11481,131 +11914,30 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(462), + [sym_number_literal] = ACTIONS(632), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(464), - [sym_false] = ACTIONS(464), - [sym_null] = ACTIONS(464), + [sym_true] = ACTIONS(634), + [sym_false] = ACTIONS(634), + [sym_null] = ACTIONS(634), [sym_comment] = ACTIONS(3), }, [52] = { - [sym_declaration] = STATE(52), - [sym_type_definition] = STATE(52), - [sym__declaration_specifiers] = STATE(792), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(52), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), - [sym__type_specifier] = STATE(723), - [sym_sized_type_specifier] = STATE(723), - [sym_enum_specifier] = STATE(723), - [sym_struct_specifier] = STATE(723), - [sym_union_specifier] = STATE(723), - [sym_labeled_statement] = STATE(52), - [sym_expression_statement] = STATE(52), - [sym_if_statement] = STATE(52), - [sym_switch_statement] = STATE(52), - [sym_while_statement] = STATE(52), - [sym_do_statement] = STATE(52), - [sym_for_statement] = STATE(52), - [sym_return_statement] = STATE(52), - [sym_break_statement] = STATE(52), - [sym_continue_statement] = STATE(52), - [sym_goto_statement] = STATE(52), - [sym__expression] = STATE(593), - [sym_comma_expression] = STATE(1015), - [sym_conditional_expression] = STATE(593), - [sym_assignment_expression] = STATE(593), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(593), - [sym_binary_expression] = STATE(593), - [sym_update_expression] = STATE(593), - [sym_cast_expression] = STATE(593), - [sym_sizeof_expression] = STATE(593), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(593), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(593), - [sym_concatenated_string] = STATE(593), - [sym_string_literal] = STATE(386), - [sym_macro_type_specifier] = STATE(723), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), - [aux_sym_case_statement_repeat1] = STATE(52), - [sym_identifier] = ACTIONS(804), - [aux_sym_preproc_include_token1] = ACTIONS(657), - [aux_sym_preproc_def_token1] = ACTIONS(657), - [aux_sym_preproc_if_token1] = ACTIONS(657), - [aux_sym_preproc_if_token2] = ACTIONS(657), - [aux_sym_preproc_ifdef_token1] = ACTIONS(657), - [aux_sym_preproc_ifdef_token2] = ACTIONS(657), - [sym_preproc_directive] = ACTIONS(657), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_typedef] = ACTIONS(810), - [anon_sym_extern] = ACTIONS(665), - [anon_sym___attribute__] = ACTIONS(668), - [anon_sym_LPAREN2] = ACTIONS(671), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(677), - [anon_sym_static] = ACTIONS(665), - [anon_sym_auto] = ACTIONS(665), - [anon_sym_register] = ACTIONS(665), - [anon_sym_inline] = ACTIONS(665), - [anon_sym_const] = ACTIONS(680), - [anon_sym_volatile] = ACTIONS(680), - [anon_sym_restrict] = ACTIONS(680), - [anon_sym__Atomic] = ACTIONS(680), - [anon_sym_signed] = ACTIONS(683), - [anon_sym_unsigned] = ACTIONS(683), - [anon_sym_long] = ACTIONS(683), - [anon_sym_short] = ACTIONS(683), - [sym_primitive_type] = ACTIONS(686), - [anon_sym_enum] = ACTIONS(689), - [anon_sym_struct] = ACTIONS(692), - [anon_sym_union] = ACTIONS(695), - [anon_sym_if] = ACTIONS(816), - [anon_sym_else] = ACTIONS(657), - [anon_sym_switch] = ACTIONS(819), - [anon_sym_case] = ACTIONS(657), - [anon_sym_default] = ACTIONS(657), - [anon_sym_while] = ACTIONS(822), - [anon_sym_do] = ACTIONS(825), - [anon_sym_for] = ACTIONS(828), - [anon_sym_return] = ACTIONS(831), - [anon_sym_break] = ACTIONS(834), - [anon_sym_continue] = ACTIONS(837), - [anon_sym_goto] = ACTIONS(840), - [anon_sym_AMP] = ACTIONS(677), - [anon_sym_BANG] = ACTIONS(725), - [anon_sym_TILDE] = ACTIONS(725), - [anon_sym_DASH] = ACTIONS(728), - [anon_sym_PLUS] = ACTIONS(728), - [anon_sym_DASH_DASH] = ACTIONS(731), - [anon_sym_PLUS_PLUS] = ACTIONS(731), - [anon_sym_sizeof] = ACTIONS(734), - [sym_number_literal] = ACTIONS(843), - [anon_sym_L_SQUOTE] = ACTIONS(740), - [anon_sym_SQUOTE] = ACTIONS(740), - [anon_sym_L_DQUOTE] = ACTIONS(743), - [anon_sym_DQUOTE] = ACTIONS(743), - [sym_true] = ACTIONS(846), - [sym_false] = ACTIONS(846), - [sym_null] = ACTIONS(846), - [sym_comment] = ACTIONS(3), - }, - [53] = { [sym_declaration] = STATE(51), [sym_type_definition] = STATE(51), - [sym__declaration_specifiers] = STATE(792), - [sym_attribute_specifier] = STATE(568), + [sym__declaration_specifiers] = STATE(789), + [sym_attribute_specifier] = STATE(570), [sym_compound_statement] = STATE(51), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), [sym__type_specifier] = STATE(723), [sym_sized_type_specifier] = STATE(723), [sym_enum_specifier] = STATE(723), @@ -11622,42 +11954,42 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(51), [sym_continue_statement] = STATE(51), [sym_goto_statement] = STATE(51), - [sym__expression] = STATE(593), - [sym_comma_expression] = STATE(1015), - [sym_conditional_expression] = STATE(593), - [sym_assignment_expression] = STATE(593), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(593), - [sym_binary_expression] = STATE(593), - [sym_update_expression] = STATE(593), - [sym_cast_expression] = STATE(593), - [sym_sizeof_expression] = STATE(593), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(593), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(593), - [sym_concatenated_string] = STATE(593), - [sym_string_literal] = STATE(386), + [sym__expression] = STATE(605), + [sym_comma_expression] = STATE(1011), + [sym_conditional_expression] = STATE(605), + [sym_assignment_expression] = STATE(605), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(605), + [sym_binary_expression] = STATE(605), + [sym_update_expression] = STATE(605), + [sym_cast_expression] = STATE(605), + [sym_sizeof_expression] = STATE(605), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(605), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(605), + [sym_concatenated_string] = STATE(605), + [sym_string_literal] = STATE(380), [sym_macro_type_specifier] = STATE(723), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), [aux_sym_case_statement_repeat1] = STATE(51), - [sym_identifier] = ACTIONS(751), - [aux_sym_preproc_include_token1] = ACTIONS(652), - [aux_sym_preproc_def_token1] = ACTIONS(652), - [aux_sym_preproc_if_token1] = ACTIONS(652), - [aux_sym_preproc_if_token2] = ACTIONS(652), - [aux_sym_preproc_ifdef_token1] = ACTIONS(652), - [aux_sym_preproc_ifdef_token2] = ACTIONS(652), - [sym_preproc_directive] = ACTIONS(652), - [anon_sym_SEMI] = ACTIONS(430), - [anon_sym_typedef] = ACTIONS(432), + [sym_identifier] = ACTIONS(755), + [aux_sym_preproc_include_token1] = ACTIONS(747), + [aux_sym_preproc_def_token1] = ACTIONS(747), + [aux_sym_preproc_if_token1] = ACTIONS(747), + [aux_sym_preproc_if_token2] = ACTIONS(747), + [aux_sym_preproc_ifdef_token1] = ACTIONS(747), + [aux_sym_preproc_ifdef_token2] = ACTIONS(747), + [sym_preproc_directive] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(600), + [anon_sym_typedef] = ACTIONS(602), [anon_sym_extern] = ACTIONS(33), [anon_sym___attribute__] = ACTIONS(25), [anon_sym_LPAREN2] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_LBRACE] = ACTIONS(606), [anon_sym_STAR] = ACTIONS(31), [anon_sym_static] = ACTIONS(33), [anon_sym_auto] = ACTIONS(33), @@ -11675,18 +12007,18 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(41), [anon_sym_struct] = ACTIONS(43), [anon_sym_union] = ACTIONS(45), - [anon_sym_if] = ACTIONS(440), - [anon_sym_else] = ACTIONS(652), - [anon_sym_switch] = ACTIONS(442), - [anon_sym_case] = ACTIONS(652), - [anon_sym_default] = ACTIONS(652), - [anon_sym_while] = ACTIONS(448), - [anon_sym_do] = ACTIONS(450), - [anon_sym_for] = ACTIONS(452), - [anon_sym_return] = ACTIONS(454), - [anon_sym_break] = ACTIONS(456), - [anon_sym_continue] = ACTIONS(458), - [anon_sym_goto] = ACTIONS(460), + [anon_sym_if] = ACTIONS(610), + [anon_sym_else] = ACTIONS(747), + [anon_sym_switch] = ACTIONS(612), + [anon_sym_case] = ACTIONS(747), + [anon_sym_default] = ACTIONS(747), + [anon_sym_while] = ACTIONS(618), + [anon_sym_do] = ACTIONS(620), + [anon_sym_for] = ACTIONS(622), + [anon_sym_return] = ACTIONS(624), + [anon_sym_break] = ACTIONS(626), + [anon_sym_continue] = ACTIONS(628), + [anon_sym_goto] = ACTIONS(630), [anon_sym_AMP] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(69), @@ -11695,177 +12027,189 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(462), + [sym_number_literal] = ACTIONS(632), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(464), - [sym_false] = ACTIONS(464), - [sym_null] = ACTIONS(464), + [sym_true] = ACTIONS(634), + [sym_false] = ACTIONS(634), + [sym_null] = ACTIONS(634), [sym_comment] = ACTIONS(3), }, - [54] = { - [sym_declaration] = STATE(60), - [sym_type_definition] = STATE(60), - [sym__declaration_specifiers] = STATE(788), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(60), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), + [53] = { + [sym_declaration] = STATE(53), + [sym_type_definition] = STATE(53), + [sym__declaration_specifiers] = STATE(789), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(53), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), [sym__type_specifier] = STATE(723), [sym_sized_type_specifier] = STATE(723), [sym_enum_specifier] = STATE(723), [sym_struct_specifier] = STATE(723), [sym_union_specifier] = STATE(723), - [sym_labeled_statement] = STATE(60), - [sym_expression_statement] = STATE(60), - [sym_if_statement] = STATE(60), - [sym_switch_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_do_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_return_statement] = STATE(60), - [sym_break_statement] = STATE(60), - [sym_continue_statement] = STATE(60), - [sym_goto_statement] = STATE(60), + [sym_labeled_statement] = STATE(53), + [sym_expression_statement] = STATE(53), + [sym_if_statement] = STATE(53), + [sym_switch_statement] = STATE(53), + [sym_while_statement] = STATE(53), + [sym_do_statement] = STATE(53), + [sym_for_statement] = STATE(53), + [sym_return_statement] = STATE(53), + [sym_break_statement] = STATE(53), + [sym_continue_statement] = STATE(53), + [sym_goto_statement] = STATE(53), [sym__expression] = STATE(605), - [sym_comma_expression] = STATE(1137), + [sym_comma_expression] = STATE(1011), [sym_conditional_expression] = STATE(605), [sym_assignment_expression] = STATE(605), - [sym_pointer_expression] = STATE(440), + [sym_pointer_expression] = STATE(505), [sym_unary_expression] = STATE(605), [sym_binary_expression] = STATE(605), [sym_update_expression] = STATE(605), [sym_cast_expression] = STATE(605), [sym_sizeof_expression] = STATE(605), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), [sym_compound_literal_expression] = STATE(605), - [sym_parenthesized_expression] = STATE(440), + [sym_parenthesized_expression] = STATE(505), [sym_char_literal] = STATE(605), [sym_concatenated_string] = STATE(605), - [sym_string_literal] = STATE(386), + [sym_string_literal] = STATE(380), [sym_macro_type_specifier] = STATE(723), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), - [aux_sym_case_statement_repeat1] = STATE(60), - [sym_identifier] = ACTIONS(800), - [aux_sym_preproc_include_token1] = ACTIONS(749), - [aux_sym_preproc_def_token1] = ACTIONS(749), - [aux_sym_preproc_if_token1] = ACTIONS(749), - [aux_sym_preproc_ifdef_token1] = ACTIONS(749), - [aux_sym_preproc_ifdef_token2] = ACTIONS(749), - [sym_preproc_directive] = ACTIONS(749), - [anon_sym_SEMI] = ACTIONS(304), - [anon_sym_typedef] = ACTIONS(306), - [anon_sym_extern] = ACTIONS(33), - [anon_sym___attribute__] = ACTIONS(25), - [anon_sym_LPAREN2] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_RBRACE] = ACTIONS(849), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_static] = ACTIONS(33), - [anon_sym_auto] = ACTIONS(33), - [anon_sym_register] = ACTIONS(33), - [anon_sym_inline] = ACTIONS(33), - [anon_sym_const] = ACTIONS(35), - [anon_sym_volatile] = ACTIONS(35), - [anon_sym_restrict] = ACTIONS(35), - [anon_sym__Atomic] = ACTIONS(35), - [anon_sym_signed] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(37), - [anon_sym_long] = ACTIONS(37), - [anon_sym_short] = ACTIONS(37), - [sym_primitive_type] = ACTIONS(648), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_struct] = ACTIONS(43), - [anon_sym_union] = ACTIONS(45), - [anon_sym_if] = ACTIONS(316), - [anon_sym_else] = ACTIONS(749), - [anon_sym_switch] = ACTIONS(318), - [anon_sym_case] = ACTIONS(749), - [anon_sym_default] = ACTIONS(749), - [anon_sym_while] = ACTIONS(324), - [anon_sym_do] = ACTIONS(326), - [anon_sym_for] = ACTIONS(328), - [anon_sym_return] = ACTIONS(330), - [anon_sym_break] = ACTIONS(332), - [anon_sym_continue] = ACTIONS(334), - [anon_sym_goto] = ACTIONS(336), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(338), - [anon_sym_L_SQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(79), - [anon_sym_L_DQUOTE] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(340), - [sym_false] = ACTIONS(340), - [sym_null] = ACTIONS(340), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [aux_sym_case_statement_repeat1] = STATE(53), + [sym_identifier] = ACTIONS(757), + [aux_sym_preproc_include_token1] = ACTIONS(653), + [aux_sym_preproc_def_token1] = ACTIONS(653), + [aux_sym_preproc_if_token1] = ACTIONS(653), + [aux_sym_preproc_if_token2] = ACTIONS(653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(653), + [aux_sym_preproc_ifdef_token2] = ACTIONS(653), + [sym_preproc_directive] = ACTIONS(653), + [anon_sym_SEMI] = ACTIONS(760), + [anon_sym_typedef] = ACTIONS(763), + [anon_sym_extern] = ACTIONS(661), + [anon_sym___attribute__] = ACTIONS(664), + [anon_sym_LPAREN2] = ACTIONS(667), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_static] = ACTIONS(661), + [anon_sym_auto] = ACTIONS(661), + [anon_sym_register] = ACTIONS(661), + [anon_sym_inline] = ACTIONS(661), + [anon_sym_const] = ACTIONS(676), + [anon_sym_volatile] = ACTIONS(676), + [anon_sym_restrict] = ACTIONS(676), + [anon_sym__Atomic] = ACTIONS(676), + [anon_sym_signed] = ACTIONS(679), + [anon_sym_unsigned] = ACTIONS(679), + [anon_sym_long] = ACTIONS(679), + [anon_sym_short] = ACTIONS(679), + [sym_primitive_type] = ACTIONS(682), + [anon_sym_enum] = ACTIONS(685), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_union] = ACTIONS(691), + [anon_sym_if] = ACTIONS(769), + [anon_sym_else] = ACTIONS(653), + [anon_sym_switch] = ACTIONS(772), + [anon_sym_case] = ACTIONS(653), + [anon_sym_default] = ACTIONS(653), + [anon_sym_while] = ACTIONS(775), + [anon_sym_do] = ACTIONS(778), + [anon_sym_for] = ACTIONS(781), + [anon_sym_return] = ACTIONS(784), + [anon_sym_break] = ACTIONS(787), + [anon_sym_continue] = ACTIONS(790), + [anon_sym_goto] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_PLUS] = ACTIONS(724), + [anon_sym_DASH_DASH] = ACTIONS(727), + [anon_sym_PLUS_PLUS] = ACTIONS(727), + [anon_sym_sizeof] = ACTIONS(730), + [sym_number_literal] = ACTIONS(796), + [anon_sym_L_SQUOTE] = ACTIONS(736), + [anon_sym_u_SQUOTE] = ACTIONS(736), + [anon_sym_U_SQUOTE] = ACTIONS(736), + [anon_sym_u8_SQUOTE] = ACTIONS(736), + [anon_sym_SQUOTE] = ACTIONS(736), + [anon_sym_L_DQUOTE] = ACTIONS(739), + [anon_sym_u_DQUOTE] = ACTIONS(739), + [anon_sym_U_DQUOTE] = ACTIONS(739), + [anon_sym_u8_DQUOTE] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(739), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_null] = ACTIONS(799), [sym_comment] = ACTIONS(3), }, - [55] = { - [sym_declaration] = STATE(62), - [sym_type_definition] = STATE(62), - [sym__declaration_specifiers] = STATE(779), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(62), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), + [54] = { + [sym_declaration] = STATE(61), + [sym_type_definition] = STATE(61), + [sym__declaration_specifiers] = STATE(786), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(61), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), [sym__type_specifier] = STATE(723), [sym_sized_type_specifier] = STATE(723), [sym_enum_specifier] = STATE(723), [sym_struct_specifier] = STATE(723), [sym_union_specifier] = STATE(723), - [sym_labeled_statement] = STATE(62), - [sym_expression_statement] = STATE(62), - [sym_if_statement] = STATE(62), - [sym_switch_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_do_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_return_statement] = STATE(62), - [sym_break_statement] = STATE(62), - [sym_continue_statement] = STATE(62), - [sym_goto_statement] = STATE(62), - [sym__expression] = STATE(592), + [sym_labeled_statement] = STATE(61), + [sym_expression_statement] = STATE(61), + [sym_if_statement] = STATE(61), + [sym_switch_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_do_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_return_statement] = STATE(61), + [sym_break_statement] = STATE(61), + [sym_continue_statement] = STATE(61), + [sym_goto_statement] = STATE(61), + [sym__expression] = STATE(594), [sym_comma_expression] = STATE(1051), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(386), + [sym_conditional_expression] = STATE(594), + [sym_assignment_expression] = STATE(594), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(594), + [sym_binary_expression] = STATE(594), + [sym_update_expression] = STATE(594), + [sym_cast_expression] = STATE(594), + [sym_sizeof_expression] = STATE(594), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(594), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(594), + [sym_concatenated_string] = STATE(594), + [sym_string_literal] = STATE(380), [sym_macro_type_specifier] = STATE(723), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), - [aux_sym_case_statement_repeat1] = STATE(62), - [ts_builtin_sym_end] = ACTIONS(851), - [sym_identifier] = ACTIONS(853), - [aux_sym_preproc_include_token1] = ACTIONS(652), - [aux_sym_preproc_def_token1] = ACTIONS(652), - [aux_sym_preproc_if_token1] = ACTIONS(652), - [aux_sym_preproc_ifdef_token1] = ACTIONS(652), - [aux_sym_preproc_ifdef_token2] = ACTIONS(652), - [sym_preproc_directive] = ACTIONS(652), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [aux_sym_case_statement_repeat1] = STATE(61), + [ts_builtin_sym_end] = ACTIONS(802), + [sym_identifier] = ACTIONS(804), + [aux_sym_preproc_include_token1] = ACTIONS(745), + [aux_sym_preproc_def_token1] = ACTIONS(745), + [aux_sym_preproc_if_token1] = ACTIONS(745), + [aux_sym_preproc_ifdef_token1] = ACTIONS(745), + [aux_sym_preproc_ifdef_token2] = ACTIONS(745), + [sym_preproc_directive] = ACTIONS(745), [anon_sym_SEMI] = ACTIONS(19), [anon_sym_typedef] = ACTIONS(21), [anon_sym_extern] = ACTIONS(33), @@ -11890,10 +12234,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(43), [anon_sym_union] = ACTIONS(45), [anon_sym_if] = ACTIONS(47), - [anon_sym_else] = ACTIONS(652), + [anon_sym_else] = ACTIONS(745), [anon_sym_switch] = ACTIONS(49), - [anon_sym_case] = ACTIONS(652), - [anon_sym_default] = ACTIONS(652), + [anon_sym_case] = ACTIONS(745), + [anon_sym_default] = ACTIONS(745), [anon_sym_while] = ACTIONS(55), [anon_sym_do] = ACTIONS(57), [anon_sym_for] = ACTIONS(59), @@ -11911,74 +12255,80 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(75), [sym_number_literal] = ACTIONS(77), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [56] = { - [sym_declaration] = STATE(48), - [sym_type_definition] = STATE(48), - [sym__declaration_specifiers] = STATE(792), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(48), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), + [55] = { + [sym_declaration] = STATE(54), + [sym_type_definition] = STATE(54), + [sym__declaration_specifiers] = STATE(786), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(54), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), [sym__type_specifier] = STATE(723), [sym_sized_type_specifier] = STATE(723), [sym_enum_specifier] = STATE(723), [sym_struct_specifier] = STATE(723), [sym_union_specifier] = STATE(723), - [sym_labeled_statement] = STATE(48), - [sym_expression_statement] = STATE(48), - [sym_if_statement] = STATE(48), - [sym_switch_statement] = STATE(48), - [sym_while_statement] = STATE(48), - [sym_do_statement] = STATE(48), - [sym_for_statement] = STATE(48), - [sym_return_statement] = STATE(48), - [sym_break_statement] = STATE(48), - [sym_continue_statement] = STATE(48), - [sym_goto_statement] = STATE(48), - [sym__expression] = STATE(593), - [sym_comma_expression] = STATE(1015), - [sym_conditional_expression] = STATE(593), - [sym_assignment_expression] = STATE(593), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(593), - [sym_binary_expression] = STATE(593), - [sym_update_expression] = STATE(593), - [sym_cast_expression] = STATE(593), - [sym_sizeof_expression] = STATE(593), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(593), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(593), - [sym_concatenated_string] = STATE(593), - [sym_string_literal] = STATE(386), + [sym_labeled_statement] = STATE(54), + [sym_expression_statement] = STATE(54), + [sym_if_statement] = STATE(54), + [sym_switch_statement] = STATE(54), + [sym_while_statement] = STATE(54), + [sym_do_statement] = STATE(54), + [sym_for_statement] = STATE(54), + [sym_return_statement] = STATE(54), + [sym_break_statement] = STATE(54), + [sym_continue_statement] = STATE(54), + [sym_goto_statement] = STATE(54), + [sym__expression] = STATE(594), + [sym_comma_expression] = STATE(1051), + [sym_conditional_expression] = STATE(594), + [sym_assignment_expression] = STATE(594), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(594), + [sym_binary_expression] = STATE(594), + [sym_update_expression] = STATE(594), + [sym_cast_expression] = STATE(594), + [sym_sizeof_expression] = STATE(594), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(594), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(594), + [sym_concatenated_string] = STATE(594), + [sym_string_literal] = STATE(380), [sym_macro_type_specifier] = STATE(723), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), - [aux_sym_case_statement_repeat1] = STATE(48), - [sym_identifier] = ACTIONS(751), - [aux_sym_preproc_include_token1] = ACTIONS(749), - [aux_sym_preproc_def_token1] = ACTIONS(749), - [aux_sym_preproc_if_token1] = ACTIONS(749), - [aux_sym_preproc_if_token2] = ACTIONS(749), - [aux_sym_preproc_ifdef_token1] = ACTIONS(749), - [aux_sym_preproc_ifdef_token2] = ACTIONS(749), - [sym_preproc_directive] = ACTIONS(749), - [anon_sym_SEMI] = ACTIONS(430), - [anon_sym_typedef] = ACTIONS(432), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [aux_sym_case_statement_repeat1] = STATE(54), + [ts_builtin_sym_end] = ACTIONS(753), + [sym_identifier] = ACTIONS(804), + [aux_sym_preproc_include_token1] = ACTIONS(646), + [aux_sym_preproc_def_token1] = ACTIONS(646), + [aux_sym_preproc_if_token1] = ACTIONS(646), + [aux_sym_preproc_ifdef_token1] = ACTIONS(646), + [aux_sym_preproc_ifdef_token2] = ACTIONS(646), + [sym_preproc_directive] = ACTIONS(646), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_typedef] = ACTIONS(21), [anon_sym_extern] = ACTIONS(33), [anon_sym___attribute__] = ACTIONS(25), [anon_sym_LPAREN2] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_STAR] = ACTIONS(31), [anon_sym_static] = ACTIONS(33), [anon_sym_auto] = ACTIONS(33), @@ -11996,18 +12346,18 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(41), [anon_sym_struct] = ACTIONS(43), [anon_sym_union] = ACTIONS(45), - [anon_sym_if] = ACTIONS(440), - [anon_sym_else] = ACTIONS(749), - [anon_sym_switch] = ACTIONS(442), - [anon_sym_case] = ACTIONS(749), - [anon_sym_default] = ACTIONS(749), - [anon_sym_while] = ACTIONS(448), - [anon_sym_do] = ACTIONS(450), - [anon_sym_for] = ACTIONS(452), - [anon_sym_return] = ACTIONS(454), - [anon_sym_break] = ACTIONS(456), - [anon_sym_continue] = ACTIONS(458), - [anon_sym_goto] = ACTIONS(460), + [anon_sym_if] = ACTIONS(47), + [anon_sym_else] = ACTIONS(646), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_case] = ACTIONS(646), + [anon_sym_default] = ACTIONS(646), + [anon_sym_while] = ACTIONS(55), + [anon_sym_do] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_break] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_goto] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(69), @@ -12016,183 +12366,195 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(462), + [sym_number_literal] = ACTIONS(77), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(464), - [sym_false] = ACTIONS(464), - [sym_null] = ACTIONS(464), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [57] = { - [sym_declaration] = STATE(57), - [sym_type_definition] = STATE(57), - [sym__declaration_specifiers] = STATE(779), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(57), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), + [56] = { + [sym_declaration] = STATE(56), + [sym_type_definition] = STATE(56), + [sym__declaration_specifiers] = STATE(791), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(56), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), [sym__type_specifier] = STATE(723), [sym_sized_type_specifier] = STATE(723), [sym_enum_specifier] = STATE(723), [sym_struct_specifier] = STATE(723), [sym_union_specifier] = STATE(723), - [sym_labeled_statement] = STATE(57), - [sym_expression_statement] = STATE(57), - [sym_if_statement] = STATE(57), - [sym_switch_statement] = STATE(57), - [sym_while_statement] = STATE(57), - [sym_do_statement] = STATE(57), - [sym_for_statement] = STATE(57), - [sym_return_statement] = STATE(57), - [sym_break_statement] = STATE(57), - [sym_continue_statement] = STATE(57), - [sym_goto_statement] = STATE(57), - [sym__expression] = STATE(592), - [sym_comma_expression] = STATE(1051), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(386), + [sym_labeled_statement] = STATE(56), + [sym_expression_statement] = STATE(56), + [sym_if_statement] = STATE(56), + [sym_switch_statement] = STATE(56), + [sym_while_statement] = STATE(56), + [sym_do_statement] = STATE(56), + [sym_for_statement] = STATE(56), + [sym_return_statement] = STATE(56), + [sym_break_statement] = STATE(56), + [sym_continue_statement] = STATE(56), + [sym_goto_statement] = STATE(56), + [sym__expression] = STATE(615), + [sym_comma_expression] = STATE(1128), + [sym_conditional_expression] = STATE(615), + [sym_assignment_expression] = STATE(615), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(615), + [sym_binary_expression] = STATE(615), + [sym_update_expression] = STATE(615), + [sym_cast_expression] = STATE(615), + [sym_sizeof_expression] = STATE(615), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(615), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(615), + [sym_concatenated_string] = STATE(615), + [sym_string_literal] = STATE(380), [sym_macro_type_specifier] = STATE(723), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), - [aux_sym_case_statement_repeat1] = STATE(57), - [ts_builtin_sym_end] = ACTIONS(765), - [sym_identifier] = ACTIONS(855), - [aux_sym_preproc_include_token1] = ACTIONS(657), - [aux_sym_preproc_def_token1] = ACTIONS(657), - [aux_sym_preproc_if_token1] = ACTIONS(657), - [aux_sym_preproc_ifdef_token1] = ACTIONS(657), - [aux_sym_preproc_ifdef_token2] = ACTIONS(657), - [sym_preproc_directive] = ACTIONS(657), - [anon_sym_SEMI] = ACTIONS(858), - [anon_sym_typedef] = ACTIONS(861), - [anon_sym_extern] = ACTIONS(665), - [anon_sym___attribute__] = ACTIONS(668), - [anon_sym_LPAREN2] = ACTIONS(671), - [anon_sym_LBRACE] = ACTIONS(864), - [anon_sym_STAR] = ACTIONS(677), - [anon_sym_static] = ACTIONS(665), - [anon_sym_auto] = ACTIONS(665), - [anon_sym_register] = ACTIONS(665), - [anon_sym_inline] = ACTIONS(665), - [anon_sym_const] = ACTIONS(680), - [anon_sym_volatile] = ACTIONS(680), - [anon_sym_restrict] = ACTIONS(680), - [anon_sym__Atomic] = ACTIONS(680), - [anon_sym_signed] = ACTIONS(683), - [anon_sym_unsigned] = ACTIONS(683), - [anon_sym_long] = ACTIONS(683), - [anon_sym_short] = ACTIONS(683), - [sym_primitive_type] = ACTIONS(686), - [anon_sym_enum] = ACTIONS(689), - [anon_sym_struct] = ACTIONS(692), - [anon_sym_union] = ACTIONS(695), - [anon_sym_if] = ACTIONS(867), - [anon_sym_else] = ACTIONS(657), - [anon_sym_switch] = ACTIONS(870), - [anon_sym_case] = ACTIONS(657), - [anon_sym_default] = ACTIONS(657), - [anon_sym_while] = ACTIONS(873), - [anon_sym_do] = ACTIONS(876), - [anon_sym_for] = ACTIONS(879), - [anon_sym_return] = ACTIONS(882), - [anon_sym_break] = ACTIONS(885), - [anon_sym_continue] = ACTIONS(888), - [anon_sym_goto] = ACTIONS(891), - [anon_sym_AMP] = ACTIONS(677), - [anon_sym_BANG] = ACTIONS(725), - [anon_sym_TILDE] = ACTIONS(725), - [anon_sym_DASH] = ACTIONS(728), - [anon_sym_PLUS] = ACTIONS(728), - [anon_sym_DASH_DASH] = ACTIONS(731), - [anon_sym_PLUS_PLUS] = ACTIONS(731), - [anon_sym_sizeof] = ACTIONS(734), - [sym_number_literal] = ACTIONS(894), - [anon_sym_L_SQUOTE] = ACTIONS(740), - [anon_sym_SQUOTE] = ACTIONS(740), - [anon_sym_L_DQUOTE] = ACTIONS(743), - [anon_sym_DQUOTE] = ACTIONS(743), - [sym_true] = ACTIONS(897), - [sym_false] = ACTIONS(897), - [sym_null] = ACTIONS(897), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [aux_sym_case_statement_repeat1] = STATE(56), + [sym_identifier] = ACTIONS(806), + [aux_sym_preproc_include_token1] = ACTIONS(653), + [aux_sym_preproc_def_token1] = ACTIONS(653), + [aux_sym_preproc_if_token1] = ACTIONS(653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(653), + [aux_sym_preproc_ifdef_token2] = ACTIONS(653), + [sym_preproc_directive] = ACTIONS(653), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_typedef] = ACTIONS(812), + [anon_sym_extern] = ACTIONS(661), + [anon_sym___attribute__] = ACTIONS(664), + [anon_sym_LPAREN2] = ACTIONS(667), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(818), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_static] = ACTIONS(661), + [anon_sym_auto] = ACTIONS(661), + [anon_sym_register] = ACTIONS(661), + [anon_sym_inline] = ACTIONS(661), + [anon_sym_const] = ACTIONS(676), + [anon_sym_volatile] = ACTIONS(676), + [anon_sym_restrict] = ACTIONS(676), + [anon_sym__Atomic] = ACTIONS(676), + [anon_sym_signed] = ACTIONS(679), + [anon_sym_unsigned] = ACTIONS(679), + [anon_sym_long] = ACTIONS(679), + [anon_sym_short] = ACTIONS(679), + [sym_primitive_type] = ACTIONS(682), + [anon_sym_enum] = ACTIONS(685), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_union] = ACTIONS(691), + [anon_sym_if] = ACTIONS(820), + [anon_sym_else] = ACTIONS(653), + [anon_sym_switch] = ACTIONS(823), + [anon_sym_case] = ACTIONS(653), + [anon_sym_default] = ACTIONS(653), + [anon_sym_while] = ACTIONS(826), + [anon_sym_do] = ACTIONS(829), + [anon_sym_for] = ACTIONS(832), + [anon_sym_return] = ACTIONS(835), + [anon_sym_break] = ACTIONS(838), + [anon_sym_continue] = ACTIONS(841), + [anon_sym_goto] = ACTIONS(844), + [anon_sym_AMP] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_PLUS] = ACTIONS(724), + [anon_sym_DASH_DASH] = ACTIONS(727), + [anon_sym_PLUS_PLUS] = ACTIONS(727), + [anon_sym_sizeof] = ACTIONS(730), + [sym_number_literal] = ACTIONS(847), + [anon_sym_L_SQUOTE] = ACTIONS(736), + [anon_sym_u_SQUOTE] = ACTIONS(736), + [anon_sym_U_SQUOTE] = ACTIONS(736), + [anon_sym_u8_SQUOTE] = ACTIONS(736), + [anon_sym_SQUOTE] = ACTIONS(736), + [anon_sym_L_DQUOTE] = ACTIONS(739), + [anon_sym_u_DQUOTE] = ACTIONS(739), + [anon_sym_U_DQUOTE] = ACTIONS(739), + [anon_sym_u8_DQUOTE] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(739), + [sym_true] = ACTIONS(850), + [sym_false] = ACTIONS(850), + [sym_null] = ACTIONS(850), [sym_comment] = ACTIONS(3), }, - [58] = { - [sym_declaration] = STATE(59), - [sym_type_definition] = STATE(59), - [sym__declaration_specifiers] = STATE(779), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(59), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), + [57] = { + [sym_declaration] = STATE(56), + [sym_type_definition] = STATE(56), + [sym__declaration_specifiers] = STATE(791), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(56), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), [sym__type_specifier] = STATE(723), [sym_sized_type_specifier] = STATE(723), [sym_enum_specifier] = STATE(723), [sym_struct_specifier] = STATE(723), [sym_union_specifier] = STATE(723), - [sym_labeled_statement] = STATE(59), - [sym_expression_statement] = STATE(59), - [sym_if_statement] = STATE(59), - [sym_switch_statement] = STATE(59), - [sym_while_statement] = STATE(59), - [sym_do_statement] = STATE(59), - [sym_for_statement] = STATE(59), - [sym_return_statement] = STATE(59), - [sym_break_statement] = STATE(59), - [sym_continue_statement] = STATE(59), - [sym_goto_statement] = STATE(59), - [sym__expression] = STATE(592), - [sym_comma_expression] = STATE(1051), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(386), + [sym_labeled_statement] = STATE(56), + [sym_expression_statement] = STATE(56), + [sym_if_statement] = STATE(56), + [sym_switch_statement] = STATE(56), + [sym_while_statement] = STATE(56), + [sym_do_statement] = STATE(56), + [sym_for_statement] = STATE(56), + [sym_return_statement] = STATE(56), + [sym_break_statement] = STATE(56), + [sym_continue_statement] = STATE(56), + [sym_goto_statement] = STATE(56), + [sym__expression] = STATE(615), + [sym_comma_expression] = STATE(1128), + [sym_conditional_expression] = STATE(615), + [sym_assignment_expression] = STATE(615), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(615), + [sym_binary_expression] = STATE(615), + [sym_update_expression] = STATE(615), + [sym_cast_expression] = STATE(615), + [sym_sizeof_expression] = STATE(615), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(615), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(615), + [sym_concatenated_string] = STATE(615), + [sym_string_literal] = STATE(380), [sym_macro_type_specifier] = STATE(723), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), - [aux_sym_case_statement_repeat1] = STATE(59), - [ts_builtin_sym_end] = ACTIONS(849), - [sym_identifier] = ACTIONS(853), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [aux_sym_case_statement_repeat1] = STATE(56), + [sym_identifier] = ACTIONS(751), [aux_sym_preproc_include_token1] = ACTIONS(749), [aux_sym_preproc_def_token1] = ACTIONS(749), [aux_sym_preproc_if_token1] = ACTIONS(749), [aux_sym_preproc_ifdef_token1] = ACTIONS(749), [aux_sym_preproc_ifdef_token2] = ACTIONS(749), [sym_preproc_directive] = ACTIONS(749), - [anon_sym_SEMI] = ACTIONS(19), - [anon_sym_typedef] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(304), + [anon_sym_typedef] = ACTIONS(306), [anon_sym_extern] = ACTIONS(33), [anon_sym___attribute__] = ACTIONS(25), [anon_sym_LPAREN2] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_RBRACE] = ACTIONS(853), [anon_sym_STAR] = ACTIONS(31), [anon_sym_static] = ACTIONS(33), [anon_sym_auto] = ACTIONS(33), @@ -12210,18 +12572,18 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(41), [anon_sym_struct] = ACTIONS(43), [anon_sym_union] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), + [anon_sym_if] = ACTIONS(316), [anon_sym_else] = ACTIONS(749), - [anon_sym_switch] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(318), [anon_sym_case] = ACTIONS(749), [anon_sym_default] = ACTIONS(749), - [anon_sym_while] = ACTIONS(55), - [anon_sym_do] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_return] = ACTIONS(61), - [anon_sym_break] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_goto] = ACTIONS(67), + [anon_sym_while] = ACTIONS(324), + [anon_sym_do] = ACTIONS(326), + [anon_sym_for] = ACTIONS(328), + [anon_sym_return] = ACTIONS(330), + [anon_sym_break] = ACTIONS(332), + [anon_sym_continue] = ACTIONS(334), + [anon_sym_goto] = ACTIONS(336), [anon_sym_AMP] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(69), @@ -12230,70 +12592,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(77), + [sym_number_literal] = ACTIONS(338), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), + [sym_true] = ACTIONS(340), + [sym_false] = ACTIONS(340), + [sym_null] = ACTIONS(340), [sym_comment] = ACTIONS(3), }, - [59] = { - [sym_declaration] = STATE(57), - [sym_type_definition] = STATE(57), - [sym__declaration_specifiers] = STATE(779), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(57), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), + [58] = { + [sym_declaration] = STATE(61), + [sym_type_definition] = STATE(61), + [sym__declaration_specifiers] = STATE(786), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(61), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), [sym__type_specifier] = STATE(723), [sym_sized_type_specifier] = STATE(723), [sym_enum_specifier] = STATE(723), [sym_struct_specifier] = STATE(723), [sym_union_specifier] = STATE(723), - [sym_labeled_statement] = STATE(57), - [sym_expression_statement] = STATE(57), - [sym_if_statement] = STATE(57), - [sym_switch_statement] = STATE(57), - [sym_while_statement] = STATE(57), - [sym_do_statement] = STATE(57), - [sym_for_statement] = STATE(57), - [sym_return_statement] = STATE(57), - [sym_break_statement] = STATE(57), - [sym_continue_statement] = STATE(57), - [sym_goto_statement] = STATE(57), - [sym__expression] = STATE(592), + [sym_labeled_statement] = STATE(61), + [sym_expression_statement] = STATE(61), + [sym_if_statement] = STATE(61), + [sym_switch_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_do_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_return_statement] = STATE(61), + [sym_break_statement] = STATE(61), + [sym_continue_statement] = STATE(61), + [sym_goto_statement] = STATE(61), + [sym__expression] = STATE(594), [sym_comma_expression] = STATE(1051), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(386), + [sym_conditional_expression] = STATE(594), + [sym_assignment_expression] = STATE(594), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(594), + [sym_binary_expression] = STATE(594), + [sym_update_expression] = STATE(594), + [sym_cast_expression] = STATE(594), + [sym_sizeof_expression] = STATE(594), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(594), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(594), + [sym_concatenated_string] = STATE(594), + [sym_string_literal] = STATE(380), [sym_macro_type_specifier] = STATE(723), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), - [aux_sym_case_statement_repeat1] = STATE(57), - [ts_builtin_sym_end] = ACTIONS(900), - [sym_identifier] = ACTIONS(853), - [aux_sym_preproc_include_token1] = ACTIONS(650), - [aux_sym_preproc_def_token1] = ACTIONS(650), - [aux_sym_preproc_if_token1] = ACTIONS(650), - [aux_sym_preproc_ifdef_token1] = ACTIONS(650), - [aux_sym_preproc_ifdef_token2] = ACTIONS(650), - [sym_preproc_directive] = ACTIONS(650), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [aux_sym_case_statement_repeat1] = STATE(61), + [ts_builtin_sym_end] = ACTIONS(853), + [sym_identifier] = ACTIONS(804), + [aux_sym_preproc_include_token1] = ACTIONS(749), + [aux_sym_preproc_def_token1] = ACTIONS(749), + [aux_sym_preproc_if_token1] = ACTIONS(749), + [aux_sym_preproc_ifdef_token1] = ACTIONS(749), + [aux_sym_preproc_ifdef_token2] = ACTIONS(749), + [sym_preproc_directive] = ACTIONS(749), [anon_sym_SEMI] = ACTIONS(19), [anon_sym_typedef] = ACTIONS(21), [anon_sym_extern] = ACTIONS(33), @@ -12318,10 +12686,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(43), [anon_sym_union] = ACTIONS(45), [anon_sym_if] = ACTIONS(47), - [anon_sym_else] = ACTIONS(650), + [anon_sym_else] = ACTIONS(749), [anon_sym_switch] = ACTIONS(49), - [anon_sym_case] = ACTIONS(650), - [anon_sym_default] = ACTIONS(650), + [anon_sym_case] = ACTIONS(749), + [anon_sym_default] = ACTIONS(749), [anon_sym_while] = ACTIONS(55), [anon_sym_do] = ACTIONS(57), [anon_sym_for] = ACTIONS(59), @@ -12339,74 +12707,80 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(75), [sym_number_literal] = ACTIONS(77), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [60] = { - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_specifiers] = STATE(788), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), + [59] = { + [sym_declaration] = STATE(56), + [sym_type_definition] = STATE(56), + [sym__declaration_specifiers] = STATE(791), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(56), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), [sym__type_specifier] = STATE(723), [sym_sized_type_specifier] = STATE(723), [sym_enum_specifier] = STATE(723), [sym_struct_specifier] = STATE(723), [sym_union_specifier] = STATE(723), - [sym_labeled_statement] = STATE(49), - [sym_expression_statement] = STATE(49), - [sym_if_statement] = STATE(49), - [sym_switch_statement] = STATE(49), - [sym_while_statement] = STATE(49), - [sym_do_statement] = STATE(49), - [sym_for_statement] = STATE(49), - [sym_return_statement] = STATE(49), - [sym_break_statement] = STATE(49), - [sym_continue_statement] = STATE(49), - [sym_goto_statement] = STATE(49), - [sym__expression] = STATE(605), - [sym_comma_expression] = STATE(1137), - [sym_conditional_expression] = STATE(605), - [sym_assignment_expression] = STATE(605), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(605), - [sym_binary_expression] = STATE(605), - [sym_update_expression] = STATE(605), - [sym_cast_expression] = STATE(605), - [sym_sizeof_expression] = STATE(605), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(605), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(605), - [sym_concatenated_string] = STATE(605), - [sym_string_literal] = STATE(386), + [sym_labeled_statement] = STATE(56), + [sym_expression_statement] = STATE(56), + [sym_if_statement] = STATE(56), + [sym_switch_statement] = STATE(56), + [sym_while_statement] = STATE(56), + [sym_do_statement] = STATE(56), + [sym_for_statement] = STATE(56), + [sym_return_statement] = STATE(56), + [sym_break_statement] = STATE(56), + [sym_continue_statement] = STATE(56), + [sym_goto_statement] = STATE(56), + [sym__expression] = STATE(615), + [sym_comma_expression] = STATE(1128), + [sym_conditional_expression] = STATE(615), + [sym_assignment_expression] = STATE(615), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(615), + [sym_binary_expression] = STATE(615), + [sym_update_expression] = STATE(615), + [sym_cast_expression] = STATE(615), + [sym_sizeof_expression] = STATE(615), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(615), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(615), + [sym_concatenated_string] = STATE(615), + [sym_string_literal] = STATE(380), [sym_macro_type_specifier] = STATE(723), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), - [aux_sym_case_statement_repeat1] = STATE(49), - [sym_identifier] = ACTIONS(800), - [aux_sym_preproc_include_token1] = ACTIONS(650), - [aux_sym_preproc_def_token1] = ACTIONS(650), - [aux_sym_preproc_if_token1] = ACTIONS(650), - [aux_sym_preproc_ifdef_token1] = ACTIONS(650), - [aux_sym_preproc_ifdef_token2] = ACTIONS(650), - [sym_preproc_directive] = ACTIONS(650), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [aux_sym_case_statement_repeat1] = STATE(56), + [sym_identifier] = ACTIONS(751), + [aux_sym_preproc_include_token1] = ACTIONS(745), + [aux_sym_preproc_def_token1] = ACTIONS(745), + [aux_sym_preproc_if_token1] = ACTIONS(745), + [aux_sym_preproc_ifdef_token1] = ACTIONS(745), + [aux_sym_preproc_ifdef_token2] = ACTIONS(745), + [sym_preproc_directive] = ACTIONS(745), [anon_sym_SEMI] = ACTIONS(304), [anon_sym_typedef] = ACTIONS(306), [anon_sym_extern] = ACTIONS(33), [anon_sym___attribute__] = ACTIONS(25), [anon_sym_LPAREN2] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_RBRACE] = ACTIONS(900), + [anon_sym_RBRACE] = ACTIONS(802), [anon_sym_STAR] = ACTIONS(31), [anon_sym_static] = ACTIONS(33), [anon_sym_auto] = ACTIONS(33), @@ -12425,10 +12799,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(43), [anon_sym_union] = ACTIONS(45), [anon_sym_if] = ACTIONS(316), - [anon_sym_else] = ACTIONS(650), + [anon_sym_else] = ACTIONS(745), [anon_sym_switch] = ACTIONS(318), - [anon_sym_case] = ACTIONS(650), - [anon_sym_default] = ACTIONS(650), + [anon_sym_case] = ACTIONS(745), + [anon_sym_default] = ACTIONS(745), [anon_sym_while] = ACTIONS(324), [anon_sym_do] = ACTIONS(326), [anon_sym_for] = ACTIONS(328), @@ -12446,74 +12820,80 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(75), [sym_number_literal] = ACTIONS(338), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), [sym_true] = ACTIONS(340), [sym_false] = ACTIONS(340), [sym_null] = ACTIONS(340), [sym_comment] = ACTIONS(3), }, - [61] = { - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_specifiers] = STATE(788), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), + [60] = { + [sym_declaration] = STATE(57), + [sym_type_definition] = STATE(57), + [sym__declaration_specifiers] = STATE(791), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(57), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), [sym__type_specifier] = STATE(723), [sym_sized_type_specifier] = STATE(723), [sym_enum_specifier] = STATE(723), [sym_struct_specifier] = STATE(723), [sym_union_specifier] = STATE(723), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym__expression] = STATE(605), - [sym_comma_expression] = STATE(1137), - [sym_conditional_expression] = STATE(605), - [sym_assignment_expression] = STATE(605), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(605), - [sym_binary_expression] = STATE(605), - [sym_update_expression] = STATE(605), - [sym_cast_expression] = STATE(605), - [sym_sizeof_expression] = STATE(605), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(605), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(605), - [sym_concatenated_string] = STATE(605), - [sym_string_literal] = STATE(386), + [sym_labeled_statement] = STATE(57), + [sym_expression_statement] = STATE(57), + [sym_if_statement] = STATE(57), + [sym_switch_statement] = STATE(57), + [sym_while_statement] = STATE(57), + [sym_do_statement] = STATE(57), + [sym_for_statement] = STATE(57), + [sym_return_statement] = STATE(57), + [sym_break_statement] = STATE(57), + [sym_continue_statement] = STATE(57), + [sym_goto_statement] = STATE(57), + [sym__expression] = STATE(615), + [sym_comma_expression] = STATE(1128), + [sym_conditional_expression] = STATE(615), + [sym_assignment_expression] = STATE(615), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(615), + [sym_binary_expression] = STATE(615), + [sym_update_expression] = STATE(615), + [sym_cast_expression] = STATE(615), + [sym_sizeof_expression] = STATE(615), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(615), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(615), + [sym_concatenated_string] = STATE(615), + [sym_string_literal] = STATE(380), [sym_macro_type_specifier] = STATE(723), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), - [aux_sym_case_statement_repeat1] = STATE(50), - [sym_identifier] = ACTIONS(800), - [aux_sym_preproc_include_token1] = ACTIONS(652), - [aux_sym_preproc_def_token1] = ACTIONS(652), - [aux_sym_preproc_if_token1] = ACTIONS(652), - [aux_sym_preproc_ifdef_token1] = ACTIONS(652), - [aux_sym_preproc_ifdef_token2] = ACTIONS(652), - [sym_preproc_directive] = ACTIONS(652), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [aux_sym_case_statement_repeat1] = STATE(57), + [sym_identifier] = ACTIONS(751), + [aux_sym_preproc_include_token1] = ACTIONS(747), + [aux_sym_preproc_def_token1] = ACTIONS(747), + [aux_sym_preproc_if_token1] = ACTIONS(747), + [aux_sym_preproc_ifdef_token1] = ACTIONS(747), + [aux_sym_preproc_ifdef_token2] = ACTIONS(747), + [sym_preproc_directive] = ACTIONS(747), [anon_sym_SEMI] = ACTIONS(304), [anon_sym_typedef] = ACTIONS(306), [anon_sym_extern] = ACTIONS(33), [anon_sym___attribute__] = ACTIONS(25), [anon_sym_LPAREN2] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_RBRACE] = ACTIONS(851), + [anon_sym_RBRACE] = ACTIONS(855), [anon_sym_STAR] = ACTIONS(31), [anon_sym_static] = ACTIONS(33), [anon_sym_auto] = ACTIONS(33), @@ -12532,10 +12912,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(43), [anon_sym_union] = ACTIONS(45), [anon_sym_if] = ACTIONS(316), - [anon_sym_else] = ACTIONS(652), + [anon_sym_else] = ACTIONS(747), [anon_sym_switch] = ACTIONS(318), - [anon_sym_case] = ACTIONS(652), - [anon_sym_default] = ACTIONS(652), + [anon_sym_case] = ACTIONS(747), + [anon_sym_default] = ACTIONS(747), [anon_sym_while] = ACTIONS(324), [anon_sym_do] = ACTIONS(326), [anon_sym_for] = ACTIONS(328), @@ -12553,68 +12933,187 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(75), [sym_number_literal] = ACTIONS(338), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), [sym_true] = ACTIONS(340), [sym_false] = ACTIONS(340), [sym_null] = ACTIONS(340), [sym_comment] = ACTIONS(3), }, + [61] = { + [sym_declaration] = STATE(61), + [sym_type_definition] = STATE(61), + [sym__declaration_specifiers] = STATE(786), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(61), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), + [sym__type_specifier] = STATE(723), + [sym_sized_type_specifier] = STATE(723), + [sym_enum_specifier] = STATE(723), + [sym_struct_specifier] = STATE(723), + [sym_union_specifier] = STATE(723), + [sym_labeled_statement] = STATE(61), + [sym_expression_statement] = STATE(61), + [sym_if_statement] = STATE(61), + [sym_switch_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_do_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_return_statement] = STATE(61), + [sym_break_statement] = STATE(61), + [sym_continue_statement] = STATE(61), + [sym_goto_statement] = STATE(61), + [sym__expression] = STATE(594), + [sym_comma_expression] = STATE(1051), + [sym_conditional_expression] = STATE(594), + [sym_assignment_expression] = STATE(594), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(594), + [sym_binary_expression] = STATE(594), + [sym_update_expression] = STATE(594), + [sym_cast_expression] = STATE(594), + [sym_sizeof_expression] = STATE(594), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(594), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(594), + [sym_concatenated_string] = STATE(594), + [sym_string_literal] = STATE(380), + [sym_macro_type_specifier] = STATE(723), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [aux_sym_case_statement_repeat1] = STATE(61), + [ts_builtin_sym_end] = ACTIONS(818), + [sym_identifier] = ACTIONS(857), + [aux_sym_preproc_include_token1] = ACTIONS(653), + [aux_sym_preproc_def_token1] = ACTIONS(653), + [aux_sym_preproc_if_token1] = ACTIONS(653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(653), + [aux_sym_preproc_ifdef_token2] = ACTIONS(653), + [sym_preproc_directive] = ACTIONS(653), + [anon_sym_SEMI] = ACTIONS(860), + [anon_sym_typedef] = ACTIONS(863), + [anon_sym_extern] = ACTIONS(661), + [anon_sym___attribute__] = ACTIONS(664), + [anon_sym_LPAREN2] = ACTIONS(667), + [anon_sym_LBRACE] = ACTIONS(866), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_static] = ACTIONS(661), + [anon_sym_auto] = ACTIONS(661), + [anon_sym_register] = ACTIONS(661), + [anon_sym_inline] = ACTIONS(661), + [anon_sym_const] = ACTIONS(676), + [anon_sym_volatile] = ACTIONS(676), + [anon_sym_restrict] = ACTIONS(676), + [anon_sym__Atomic] = ACTIONS(676), + [anon_sym_signed] = ACTIONS(679), + [anon_sym_unsigned] = ACTIONS(679), + [anon_sym_long] = ACTIONS(679), + [anon_sym_short] = ACTIONS(679), + [sym_primitive_type] = ACTIONS(682), + [anon_sym_enum] = ACTIONS(685), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_union] = ACTIONS(691), + [anon_sym_if] = ACTIONS(869), + [anon_sym_else] = ACTIONS(653), + [anon_sym_switch] = ACTIONS(872), + [anon_sym_case] = ACTIONS(653), + [anon_sym_default] = ACTIONS(653), + [anon_sym_while] = ACTIONS(875), + [anon_sym_do] = ACTIONS(878), + [anon_sym_for] = ACTIONS(881), + [anon_sym_return] = ACTIONS(884), + [anon_sym_break] = ACTIONS(887), + [anon_sym_continue] = ACTIONS(890), + [anon_sym_goto] = ACTIONS(893), + [anon_sym_AMP] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_PLUS] = ACTIONS(724), + [anon_sym_DASH_DASH] = ACTIONS(727), + [anon_sym_PLUS_PLUS] = ACTIONS(727), + [anon_sym_sizeof] = ACTIONS(730), + [sym_number_literal] = ACTIONS(896), + [anon_sym_L_SQUOTE] = ACTIONS(736), + [anon_sym_u_SQUOTE] = ACTIONS(736), + [anon_sym_U_SQUOTE] = ACTIONS(736), + [anon_sym_u8_SQUOTE] = ACTIONS(736), + [anon_sym_SQUOTE] = ACTIONS(736), + [anon_sym_L_DQUOTE] = ACTIONS(739), + [anon_sym_u_DQUOTE] = ACTIONS(739), + [anon_sym_U_DQUOTE] = ACTIONS(739), + [anon_sym_u8_DQUOTE] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(739), + [sym_true] = ACTIONS(899), + [sym_false] = ACTIONS(899), + [sym_null] = ACTIONS(899), + [sym_comment] = ACTIONS(3), + }, [62] = { - [sym_declaration] = STATE(57), - [sym_type_definition] = STATE(57), - [sym__declaration_specifiers] = STATE(779), - [sym_attribute_specifier] = STATE(568), - [sym_compound_statement] = STATE(57), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym__declaration_specifiers] = STATE(786), + [sym_attribute_specifier] = STATE(570), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), [sym__type_specifier] = STATE(723), [sym_sized_type_specifier] = STATE(723), [sym_enum_specifier] = STATE(723), [sym_struct_specifier] = STATE(723), [sym_union_specifier] = STATE(723), - [sym_labeled_statement] = STATE(57), - [sym_expression_statement] = STATE(57), - [sym_if_statement] = STATE(57), - [sym_switch_statement] = STATE(57), - [sym_while_statement] = STATE(57), - [sym_do_statement] = STATE(57), - [sym_for_statement] = STATE(57), - [sym_return_statement] = STATE(57), - [sym_break_statement] = STATE(57), - [sym_continue_statement] = STATE(57), - [sym_goto_statement] = STATE(57), - [sym__expression] = STATE(592), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym__expression] = STATE(594), [sym_comma_expression] = STATE(1051), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(386), + [sym_conditional_expression] = STATE(594), + [sym_assignment_expression] = STATE(594), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(594), + [sym_binary_expression] = STATE(594), + [sym_update_expression] = STATE(594), + [sym_cast_expression] = STATE(594), + [sym_sizeof_expression] = STATE(594), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(594), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(594), + [sym_concatenated_string] = STATE(594), + [sym_string_literal] = STATE(380), [sym_macro_type_specifier] = STATE(723), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), - [aux_sym_case_statement_repeat1] = STATE(57), - [ts_builtin_sym_end] = ACTIONS(802), - [sym_identifier] = ACTIONS(853), - [aux_sym_preproc_include_token1] = ACTIONS(646), - [aux_sym_preproc_def_token1] = ACTIONS(646), - [aux_sym_preproc_if_token1] = ACTIONS(646), - [aux_sym_preproc_ifdef_token1] = ACTIONS(646), - [aux_sym_preproc_ifdef_token2] = ACTIONS(646), - [sym_preproc_directive] = ACTIONS(646), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [aux_sym_case_statement_repeat1] = STATE(58), + [ts_builtin_sym_end] = ACTIONS(855), + [sym_identifier] = ACTIONS(804), + [aux_sym_preproc_include_token1] = ACTIONS(747), + [aux_sym_preproc_def_token1] = ACTIONS(747), + [aux_sym_preproc_if_token1] = ACTIONS(747), + [aux_sym_preproc_ifdef_token1] = ACTIONS(747), + [aux_sym_preproc_ifdef_token2] = ACTIONS(747), + [sym_preproc_directive] = ACTIONS(747), [anon_sym_SEMI] = ACTIONS(19), [anon_sym_typedef] = ACTIONS(21), [anon_sym_extern] = ACTIONS(33), @@ -12639,10 +13138,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(43), [anon_sym_union] = ACTIONS(45), [anon_sym_if] = ACTIONS(47), - [anon_sym_else] = ACTIONS(646), + [anon_sym_else] = ACTIONS(747), [anon_sym_switch] = ACTIONS(49), - [anon_sym_case] = ACTIONS(646), - [anon_sym_default] = ACTIONS(646), + [anon_sym_case] = ACTIONS(747), + [anon_sym_default] = ACTIONS(747), [anon_sym_while] = ACTIONS(55), [anon_sym_do] = ACTIONS(57), [anon_sym_for] = ACTIONS(59), @@ -12660,8 +13159,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(75), [sym_number_literal] = ACTIONS(77), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), @@ -12669,24 +13174,24 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [63] = { - [sym__expression] = STATE(413), - [sym_conditional_expression] = STATE(413), - [sym_assignment_expression] = STATE(413), - [sym_pointer_expression] = STATE(413), - [sym_unary_expression] = STATE(413), - [sym_binary_expression] = STATE(413), - [sym_update_expression] = STATE(413), - [sym_cast_expression] = STATE(413), - [sym_sizeof_expression] = STATE(413), - [sym_subscript_expression] = STATE(413), - [sym_call_expression] = STATE(413), - [sym_field_expression] = STATE(413), - [sym_compound_literal_expression] = STATE(413), - [sym_parenthesized_expression] = STATE(413), - [sym_initializer_list] = STATE(436), - [sym_char_literal] = STATE(413), - [sym_concatenated_string] = STATE(413), - [sym_string_literal] = STATE(386), + [sym__expression] = STATE(479), + [sym_conditional_expression] = STATE(479), + [sym_assignment_expression] = STATE(479), + [sym_pointer_expression] = STATE(479), + [sym_unary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_cast_expression] = STATE(479), + [sym_sizeof_expression] = STATE(479), + [sym_subscript_expression] = STATE(479), + [sym_call_expression] = STATE(479), + [sym_field_expression] = STATE(479), + [sym_compound_literal_expression] = STATE(479), + [sym_parenthesized_expression] = STATE(479), + [sym_initializer_list] = STATE(502), + [sym_char_literal] = STATE(479), + [sym_concatenated_string] = STATE(479), + [sym_string_literal] = STATE(380), [sym_identifier] = ACTIONS(902), [anon_sym_COMMA] = ACTIONS(904), [anon_sym_RPAREN] = ACTIONS(904), @@ -12736,8 +13241,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(904), [sym_number_literal] = ACTIONS(922), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), [sym_true] = ACTIONS(902), [sym_false] = ACTIONS(902), @@ -12745,37 +13256,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [64] = { - [sym_declaration] = STATE(496), - [sym__declaration_specifiers] = STATE(779), - [sym_attribute_specifier] = STATE(568), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), + [sym_declaration] = STATE(453), + [sym__declaration_specifiers] = STATE(786), + [sym_attribute_specifier] = STATE(570), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), [sym__type_specifier] = STATE(723), [sym_sized_type_specifier] = STATE(723), [sym_enum_specifier] = STATE(723), [sym_struct_specifier] = STATE(723), [sym_union_specifier] = STATE(723), - [sym__expression] = STATE(615), - [sym_comma_expression] = STATE(1148), - [sym_conditional_expression] = STATE(615), - [sym_assignment_expression] = STATE(615), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(615), - [sym_binary_expression] = STATE(615), - [sym_update_expression] = STATE(615), - [sym_cast_expression] = STATE(615), - [sym_sizeof_expression] = STATE(615), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(615), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(615), - [sym_concatenated_string] = STATE(615), - [sym_string_literal] = STATE(386), + [sym__expression] = STATE(602), + [sym_comma_expression] = STATE(1154), + [sym_conditional_expression] = STATE(602), + [sym_assignment_expression] = STATE(602), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_cast_expression] = STATE(602), + [sym_sizeof_expression] = STATE(602), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(602), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(602), + [sym_concatenated_string] = STATE(602), + [sym_string_literal] = STATE(380), [sym_macro_type_specifier] = STATE(723), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), [sym_identifier] = ACTIONS(924), [anon_sym_SEMI] = ACTIONS(926), [anon_sym_extern] = ACTIONS(33), @@ -12808,8 +13319,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(75), [sym_number_literal] = ACTIONS(928), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), [sym_true] = ACTIONS(930), [sym_false] = ACTIONS(930), @@ -12817,37 +13334,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [65] = { - [sym_declaration] = STATE(497), - [sym__declaration_specifiers] = STATE(779), - [sym_attribute_specifier] = STATE(568), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), + [sym_declaration] = STATE(482), + [sym__declaration_specifiers] = STATE(786), + [sym_attribute_specifier] = STATE(570), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), [sym__type_specifier] = STATE(723), [sym_sized_type_specifier] = STATE(723), [sym_enum_specifier] = STATE(723), [sym_struct_specifier] = STATE(723), [sym_union_specifier] = STATE(723), - [sym__expression] = STATE(604), - [sym_comma_expression] = STATE(1154), - [sym_conditional_expression] = STATE(604), - [sym_assignment_expression] = STATE(604), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(604), - [sym_binary_expression] = STATE(604), - [sym_update_expression] = STATE(604), - [sym_cast_expression] = STATE(604), - [sym_sizeof_expression] = STATE(604), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(604), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(604), - [sym_concatenated_string] = STATE(604), - [sym_string_literal] = STATE(386), + [sym__expression] = STATE(591), + [sym_comma_expression] = STATE(1058), + [sym_conditional_expression] = STATE(591), + [sym_assignment_expression] = STATE(591), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_cast_expression] = STATE(591), + [sym_sizeof_expression] = STATE(591), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(591), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(591), + [sym_concatenated_string] = STATE(591), + [sym_string_literal] = STATE(380), [sym_macro_type_specifier] = STATE(723), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), [sym_identifier] = ACTIONS(924), [anon_sym_SEMI] = ACTIONS(932), [anon_sym_extern] = ACTIONS(33), @@ -12880,8 +13397,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(75), [sym_number_literal] = ACTIONS(934), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), [sym_true] = ACTIONS(936), [sym_false] = ACTIONS(936), @@ -12889,37 +13412,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [66] = { - [sym_declaration] = STATE(494), - [sym__declaration_specifiers] = STATE(779), - [sym_attribute_specifier] = STATE(568), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), + [sym_declaration] = STATE(457), + [sym__declaration_specifiers] = STATE(786), + [sym_attribute_specifier] = STATE(570), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), [sym__type_specifier] = STATE(723), [sym_sized_type_specifier] = STATE(723), [sym_enum_specifier] = STATE(723), [sym_struct_specifier] = STATE(723), [sym_union_specifier] = STATE(723), - [sym__expression] = STATE(577), - [sym_comma_expression] = STATE(1110), - [sym_conditional_expression] = STATE(577), - [sym_assignment_expression] = STATE(577), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(577), - [sym_binary_expression] = STATE(577), - [sym_update_expression] = STATE(577), - [sym_cast_expression] = STATE(577), - [sym_sizeof_expression] = STATE(577), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(577), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(577), - [sym_concatenated_string] = STATE(577), - [sym_string_literal] = STATE(386), + [sym__expression] = STATE(617), + [sym_comma_expression] = STATE(1148), + [sym_conditional_expression] = STATE(617), + [sym_assignment_expression] = STATE(617), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(617), + [sym_binary_expression] = STATE(617), + [sym_update_expression] = STATE(617), + [sym_cast_expression] = STATE(617), + [sym_sizeof_expression] = STATE(617), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(617), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(617), + [sym_concatenated_string] = STATE(617), + [sym_string_literal] = STATE(380), [sym_macro_type_specifier] = STATE(723), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), [sym_identifier] = ACTIONS(924), [anon_sym_SEMI] = ACTIONS(938), [anon_sym_extern] = ACTIONS(33), @@ -12952,8 +13475,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(75), [sym_number_literal] = ACTIONS(940), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), [sym_true] = ACTIONS(942), [sym_false] = ACTIONS(942), @@ -12961,37 +13490,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [67] = { - [sym_declaration] = STATE(502), - [sym__declaration_specifiers] = STATE(779), - [sym_attribute_specifier] = STATE(568), - [sym_storage_class_specifier] = STATE(568), - [sym_type_qualifier] = STATE(568), + [sym_declaration] = STATE(465), + [sym__declaration_specifiers] = STATE(786), + [sym_attribute_specifier] = STATE(570), + [sym_storage_class_specifier] = STATE(570), + [sym_type_qualifier] = STATE(570), [sym__type_specifier] = STATE(723), [sym_sized_type_specifier] = STATE(723), [sym_enum_specifier] = STATE(723), [sym_struct_specifier] = STATE(723), [sym_union_specifier] = STATE(723), - [sym__expression] = STATE(614), + [sym__expression] = STATE(616), [sym_comma_expression] = STATE(1142), - [sym_conditional_expression] = STATE(614), - [sym_assignment_expression] = STATE(614), - [sym_pointer_expression] = STATE(440), - [sym_unary_expression] = STATE(614), - [sym_binary_expression] = STATE(614), - [sym_update_expression] = STATE(614), - [sym_cast_expression] = STATE(614), - [sym_sizeof_expression] = STATE(614), - [sym_subscript_expression] = STATE(440), - [sym_call_expression] = STATE(440), - [sym_field_expression] = STATE(440), - [sym_compound_literal_expression] = STATE(614), - [sym_parenthesized_expression] = STATE(440), - [sym_char_literal] = STATE(614), - [sym_concatenated_string] = STATE(614), - [sym_string_literal] = STATE(386), + [sym_conditional_expression] = STATE(616), + [sym_assignment_expression] = STATE(616), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(616), + [sym_binary_expression] = STATE(616), + [sym_update_expression] = STATE(616), + [sym_cast_expression] = STATE(616), + [sym_sizeof_expression] = STATE(616), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(616), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(616), + [sym_concatenated_string] = STATE(616), + [sym_string_literal] = STATE(380), [sym_macro_type_specifier] = STATE(723), - [aux_sym__declaration_specifiers_repeat1] = STATE(568), - [aux_sym_sized_type_specifier_repeat1] = STATE(707), + [aux_sym__declaration_specifiers_repeat1] = STATE(570), + [aux_sym_sized_type_specifier_repeat1] = STATE(712), [sym_identifier] = ACTIONS(924), [anon_sym_SEMI] = ACTIONS(944), [anon_sym_extern] = ACTIONS(33), @@ -13024,22851 +13553,20245 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(75), [sym_number_literal] = ACTIONS(946), [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), [sym_true] = ACTIONS(948), [sym_false] = ACTIONS(948), [sym_null] = ACTIONS(948), [sym_comment] = ACTIONS(3), }, -}; - -static uint16_t ts_small_parse_table[] = { - [0] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(103), 1, - anon_sym_SEMI, - ACTIONS(109), 1, - anon_sym_LBRACE, - ACTIONS(113), 1, - anon_sym_if, - ACTIONS(115), 1, - anon_sym_switch, - ACTIONS(117), 1, - anon_sym_case, - ACTIONS(119), 1, - anon_sym_default, - ACTIONS(121), 1, - anon_sym_while, - ACTIONS(123), 1, - anon_sym_do, - ACTIONS(125), 1, - anon_sym_for, - ACTIONS(127), 1, - anon_sym_return, - ACTIONS(129), 1, - anon_sym_break, - ACTIONS(131), 1, - anon_sym_continue, - ACTIONS(133), 1, - anon_sym_goto, - ACTIONS(135), 1, - sym_number_literal, - ACTIONS(950), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1064), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(137), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(598), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(143), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [125] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_SEMI, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(47), 1, - anon_sym_if, - ACTIONS(49), 1, - anon_sym_switch, - ACTIONS(51), 1, - anon_sym_case, - ACTIONS(53), 1, - anon_sym_default, - ACTIONS(55), 1, - anon_sym_while, - ACTIONS(57), 1, - anon_sym_do, - ACTIONS(59), 1, - anon_sym_for, - ACTIONS(61), 1, - anon_sym_return, - ACTIONS(63), 1, - anon_sym_break, - ACTIONS(65), 1, - anon_sym_continue, - ACTIONS(67), 1, - anon_sym_goto, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(77), 1, - sym_number_literal, - ACTIONS(952), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1051), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(83), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(592), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(1014), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [250] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(304), 1, - anon_sym_SEMI, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(316), 1, - anon_sym_if, - ACTIONS(318), 1, - anon_sym_switch, - ACTIONS(320), 1, - anon_sym_case, - ACTIONS(322), 1, - anon_sym_default, - ACTIONS(324), 1, - anon_sym_while, - ACTIONS(326), 1, - anon_sym_do, - ACTIONS(328), 1, - anon_sym_for, - ACTIONS(330), 1, - anon_sym_return, - ACTIONS(332), 1, - anon_sym_break, - ACTIONS(334), 1, - anon_sym_continue, - ACTIONS(336), 1, - anon_sym_goto, - ACTIONS(338), 1, - sym_number_literal, - ACTIONS(954), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1137), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(340), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(605), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(197), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [375] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_SEMI, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(47), 1, - anon_sym_if, - ACTIONS(49), 1, - anon_sym_switch, - ACTIONS(51), 1, - anon_sym_case, - ACTIONS(53), 1, - anon_sym_default, - ACTIONS(55), 1, - anon_sym_while, - ACTIONS(57), 1, - anon_sym_do, - ACTIONS(59), 1, - anon_sym_for, - ACTIONS(61), 1, - anon_sym_return, - ACTIONS(63), 1, - anon_sym_break, - ACTIONS(65), 1, - anon_sym_continue, - ACTIONS(67), 1, - anon_sym_goto, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(77), 1, - sym_number_literal, - ACTIONS(952), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1051), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(83), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(592), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(247), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [500] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_SEMI, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(47), 1, - anon_sym_if, - ACTIONS(49), 1, - anon_sym_switch, - ACTIONS(51), 1, - anon_sym_case, - ACTIONS(53), 1, - anon_sym_default, - ACTIONS(55), 1, - anon_sym_while, - ACTIONS(57), 1, - anon_sym_do, - ACTIONS(59), 1, - anon_sym_for, - ACTIONS(61), 1, - anon_sym_return, - ACTIONS(63), 1, - anon_sym_break, - ACTIONS(65), 1, - anon_sym_continue, - ACTIONS(67), 1, - anon_sym_goto, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(77), 1, - sym_number_literal, - ACTIONS(952), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1051), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(83), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(592), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(225), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [625] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(304), 1, - anon_sym_SEMI, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(316), 1, - anon_sym_if, - ACTIONS(318), 1, - anon_sym_switch, - ACTIONS(320), 1, - anon_sym_case, - ACTIONS(322), 1, - anon_sym_default, - ACTIONS(324), 1, - anon_sym_while, - ACTIONS(326), 1, - anon_sym_do, - ACTIONS(328), 1, - anon_sym_for, - ACTIONS(330), 1, - anon_sym_return, - ACTIONS(332), 1, - anon_sym_break, - ACTIONS(334), 1, - anon_sym_continue, - ACTIONS(336), 1, - anon_sym_goto, - ACTIONS(338), 1, - sym_number_literal, - ACTIONS(954), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1137), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(340), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(605), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(223), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [750] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(103), 1, - anon_sym_SEMI, - ACTIONS(109), 1, - anon_sym_LBRACE, - ACTIONS(113), 1, - anon_sym_if, - ACTIONS(115), 1, - anon_sym_switch, - ACTIONS(117), 1, - anon_sym_case, - ACTIONS(119), 1, - anon_sym_default, - ACTIONS(121), 1, - anon_sym_while, - ACTIONS(123), 1, - anon_sym_do, - ACTIONS(125), 1, - anon_sym_for, - ACTIONS(127), 1, - anon_sym_return, - ACTIONS(129), 1, - anon_sym_break, - ACTIONS(131), 1, - anon_sym_continue, - ACTIONS(133), 1, - anon_sym_goto, - ACTIONS(135), 1, - sym_number_literal, - ACTIONS(950), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1064), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(137), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(598), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(145), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [875] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(304), 1, - anon_sym_SEMI, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(316), 1, - anon_sym_if, - ACTIONS(318), 1, - anon_sym_switch, - ACTIONS(320), 1, - anon_sym_case, - ACTIONS(322), 1, - anon_sym_default, - ACTIONS(324), 1, - anon_sym_while, - ACTIONS(326), 1, - anon_sym_do, - ACTIONS(328), 1, - anon_sym_for, - ACTIONS(330), 1, - anon_sym_return, - ACTIONS(332), 1, - anon_sym_break, - ACTIONS(334), 1, - anon_sym_continue, - ACTIONS(336), 1, - anon_sym_goto, - ACTIONS(338), 1, - sym_number_literal, - ACTIONS(954), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1137), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(340), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(605), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(226), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [1000] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_SEMI, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(47), 1, - anon_sym_if, - ACTIONS(49), 1, - anon_sym_switch, - ACTIONS(51), 1, - anon_sym_case, - ACTIONS(53), 1, - anon_sym_default, - ACTIONS(55), 1, - anon_sym_while, - ACTIONS(57), 1, - anon_sym_do, - ACTIONS(59), 1, - anon_sym_for, - ACTIONS(61), 1, - anon_sym_return, - ACTIONS(63), 1, - anon_sym_break, - ACTIONS(65), 1, - anon_sym_continue, - ACTIONS(67), 1, - anon_sym_goto, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(77), 1, - sym_number_literal, - ACTIONS(952), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1051), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(83), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(592), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(1145), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [1125] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(430), 1, - anon_sym_SEMI, - ACTIONS(436), 1, - anon_sym_LBRACE, - ACTIONS(440), 1, - anon_sym_if, - ACTIONS(442), 1, - anon_sym_switch, - ACTIONS(444), 1, - anon_sym_case, - ACTIONS(446), 1, - anon_sym_default, - ACTIONS(448), 1, - anon_sym_while, - ACTIONS(450), 1, - anon_sym_do, - ACTIONS(452), 1, - anon_sym_for, - ACTIONS(454), 1, - anon_sym_return, - ACTIONS(456), 1, - anon_sym_break, - ACTIONS(458), 1, - anon_sym_continue, - ACTIONS(460), 1, - anon_sym_goto, - ACTIONS(462), 1, - sym_number_literal, - ACTIONS(956), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1015), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(464), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(593), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(248), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [1250] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(430), 1, - anon_sym_SEMI, - ACTIONS(436), 1, - anon_sym_LBRACE, - ACTIONS(440), 1, - anon_sym_if, - ACTIONS(442), 1, - anon_sym_switch, - ACTIONS(444), 1, - anon_sym_case, - ACTIONS(446), 1, - anon_sym_default, - ACTIONS(448), 1, - anon_sym_while, - ACTIONS(450), 1, - anon_sym_do, - ACTIONS(452), 1, - anon_sym_for, - ACTIONS(454), 1, - anon_sym_return, - ACTIONS(456), 1, - anon_sym_break, - ACTIONS(458), 1, - anon_sym_continue, - ACTIONS(460), 1, - anon_sym_goto, - ACTIONS(462), 1, - sym_number_literal, - ACTIONS(956), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1015), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(464), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(593), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(251), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [1375] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(430), 1, - anon_sym_SEMI, - ACTIONS(436), 1, - anon_sym_LBRACE, - ACTIONS(440), 1, - anon_sym_if, - ACTIONS(442), 1, - anon_sym_switch, - ACTIONS(444), 1, - anon_sym_case, - ACTIONS(446), 1, - anon_sym_default, - ACTIONS(448), 1, - anon_sym_while, - ACTIONS(450), 1, - anon_sym_do, - ACTIONS(452), 1, - anon_sym_for, - ACTIONS(454), 1, - anon_sym_return, - ACTIONS(456), 1, - anon_sym_break, - ACTIONS(458), 1, - anon_sym_continue, - ACTIONS(460), 1, - anon_sym_goto, - ACTIONS(462), 1, - sym_number_literal, - ACTIONS(956), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1015), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(464), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(593), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(254), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [1500] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_SEMI, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(47), 1, - anon_sym_if, - ACTIONS(49), 1, - anon_sym_switch, - ACTIONS(51), 1, - anon_sym_case, - ACTIONS(53), 1, - anon_sym_default, - ACTIONS(55), 1, - anon_sym_while, - ACTIONS(57), 1, - anon_sym_do, - ACTIONS(59), 1, - anon_sym_for, - ACTIONS(61), 1, - anon_sym_return, - ACTIONS(63), 1, - anon_sym_break, - ACTIONS(65), 1, - anon_sym_continue, - ACTIONS(67), 1, - anon_sym_goto, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(77), 1, - sym_number_literal, - ACTIONS(952), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1051), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(83), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(592), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(217), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [1625] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_SEMI, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(47), 1, - anon_sym_if, - ACTIONS(49), 1, - anon_sym_switch, - ACTIONS(51), 1, - anon_sym_case, - ACTIONS(53), 1, - anon_sym_default, - ACTIONS(55), 1, - anon_sym_while, - ACTIONS(57), 1, - anon_sym_do, - ACTIONS(59), 1, - anon_sym_for, - ACTIONS(61), 1, - anon_sym_return, - ACTIONS(63), 1, - anon_sym_break, - ACTIONS(65), 1, - anon_sym_continue, - ACTIONS(67), 1, - anon_sym_goto, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(77), 1, - sym_number_literal, - ACTIONS(952), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1051), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(83), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(592), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(216), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [1750] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_SEMI, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(47), 1, - anon_sym_if, - ACTIONS(49), 1, - anon_sym_switch, - ACTIONS(51), 1, - anon_sym_case, - ACTIONS(53), 1, - anon_sym_default, - ACTIONS(55), 1, - anon_sym_while, - ACTIONS(57), 1, - anon_sym_do, - ACTIONS(59), 1, - anon_sym_for, - ACTIONS(61), 1, - anon_sym_return, - ACTIONS(63), 1, - anon_sym_break, - ACTIONS(65), 1, - anon_sym_continue, - ACTIONS(67), 1, - anon_sym_goto, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(77), 1, - sym_number_literal, - ACTIONS(952), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1051), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(83), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(592), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(207), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [1875] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(103), 1, - anon_sym_SEMI, - ACTIONS(109), 1, - anon_sym_LBRACE, - ACTIONS(113), 1, - anon_sym_if, - ACTIONS(115), 1, - anon_sym_switch, - ACTIONS(117), 1, - anon_sym_case, - ACTIONS(119), 1, - anon_sym_default, - ACTIONS(121), 1, - anon_sym_while, - ACTIONS(123), 1, - anon_sym_do, - ACTIONS(125), 1, - anon_sym_for, - ACTIONS(127), 1, - anon_sym_return, - ACTIONS(129), 1, - anon_sym_break, - ACTIONS(131), 1, - anon_sym_continue, - ACTIONS(133), 1, - anon_sym_goto, - ACTIONS(135), 1, - sym_number_literal, - ACTIONS(950), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1064), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(137), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(598), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(148), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [2000] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(103), 1, - anon_sym_SEMI, - ACTIONS(109), 1, - anon_sym_LBRACE, - ACTIONS(113), 1, - anon_sym_if, - ACTIONS(115), 1, - anon_sym_switch, - ACTIONS(117), 1, - anon_sym_case, - ACTIONS(119), 1, - anon_sym_default, - ACTIONS(121), 1, - anon_sym_while, - ACTIONS(123), 1, - anon_sym_do, - ACTIONS(125), 1, - anon_sym_for, - ACTIONS(127), 1, - anon_sym_return, - ACTIONS(129), 1, - anon_sym_break, - ACTIONS(131), 1, - anon_sym_continue, - ACTIONS(133), 1, - anon_sym_goto, - ACTIONS(135), 1, - sym_number_literal, - ACTIONS(950), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1064), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(137), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(598), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(141), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [2125] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_SEMI, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(47), 1, - anon_sym_if, - ACTIONS(49), 1, - anon_sym_switch, - ACTIONS(51), 1, - anon_sym_case, - ACTIONS(53), 1, - anon_sym_default, - ACTIONS(55), 1, - anon_sym_while, - ACTIONS(57), 1, - anon_sym_do, - ACTIONS(59), 1, - anon_sym_for, - ACTIONS(61), 1, - anon_sym_return, - ACTIONS(63), 1, - anon_sym_break, - ACTIONS(65), 1, - anon_sym_continue, - ACTIONS(67), 1, - anon_sym_goto, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(77), 1, - sym_number_literal, - ACTIONS(952), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1051), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(83), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(592), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(1139), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [2250] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(304), 1, - anon_sym_SEMI, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(316), 1, - anon_sym_if, - ACTIONS(318), 1, - anon_sym_switch, - ACTIONS(320), 1, - anon_sym_case, - ACTIONS(322), 1, - anon_sym_default, - ACTIONS(324), 1, - anon_sym_while, - ACTIONS(326), 1, - anon_sym_do, - ACTIONS(328), 1, - anon_sym_for, - ACTIONS(330), 1, - anon_sym_return, - ACTIONS(332), 1, - anon_sym_break, - ACTIONS(334), 1, - anon_sym_continue, - ACTIONS(336), 1, - anon_sym_goto, - ACTIONS(338), 1, - sym_number_literal, - ACTIONS(954), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1137), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(340), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(605), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(236), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [2375] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(430), 1, - anon_sym_SEMI, - ACTIONS(436), 1, - anon_sym_LBRACE, - ACTIONS(440), 1, - anon_sym_if, - ACTIONS(442), 1, - anon_sym_switch, - ACTIONS(444), 1, - anon_sym_case, - ACTIONS(446), 1, - anon_sym_default, - ACTIONS(448), 1, - anon_sym_while, - ACTIONS(450), 1, - anon_sym_do, - ACTIONS(452), 1, - anon_sym_for, - ACTIONS(454), 1, - anon_sym_return, - ACTIONS(456), 1, - anon_sym_break, - ACTIONS(458), 1, - anon_sym_continue, - ACTIONS(460), 1, - anon_sym_goto, - ACTIONS(462), 1, - sym_number_literal, - ACTIONS(956), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1015), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(464), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(593), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(276), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [2500] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_SEMI, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(47), 1, - anon_sym_if, - ACTIONS(49), 1, - anon_sym_switch, - ACTIONS(51), 1, - anon_sym_case, - ACTIONS(53), 1, - anon_sym_default, - ACTIONS(55), 1, - anon_sym_while, - ACTIONS(57), 1, - anon_sym_do, - ACTIONS(59), 1, - anon_sym_for, - ACTIONS(61), 1, - anon_sym_return, - ACTIONS(63), 1, - anon_sym_break, - ACTIONS(65), 1, - anon_sym_continue, - ACTIONS(67), 1, - anon_sym_goto, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(77), 1, - sym_number_literal, - ACTIONS(952), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1051), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(83), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(592), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(208), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [2625] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(103), 1, - anon_sym_SEMI, - ACTIONS(109), 1, - anon_sym_LBRACE, - ACTIONS(113), 1, - anon_sym_if, - ACTIONS(115), 1, - anon_sym_switch, - ACTIONS(117), 1, - anon_sym_case, - ACTIONS(119), 1, - anon_sym_default, - ACTIONS(121), 1, - anon_sym_while, - ACTIONS(123), 1, - anon_sym_do, - ACTIONS(125), 1, - anon_sym_for, - ACTIONS(127), 1, - anon_sym_return, - ACTIONS(129), 1, - anon_sym_break, - ACTIONS(131), 1, - anon_sym_continue, - ACTIONS(133), 1, - anon_sym_goto, - ACTIONS(135), 1, - sym_number_literal, - ACTIONS(950), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1064), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(137), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(598), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(142), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [2750] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_SEMI, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(47), 1, - anon_sym_if, - ACTIONS(49), 1, - anon_sym_switch, - ACTIONS(51), 1, - anon_sym_case, - ACTIONS(53), 1, - anon_sym_default, - ACTIONS(55), 1, - anon_sym_while, - ACTIONS(57), 1, - anon_sym_do, - ACTIONS(59), 1, - anon_sym_for, - ACTIONS(61), 1, - anon_sym_return, - ACTIONS(63), 1, - anon_sym_break, - ACTIONS(65), 1, - anon_sym_continue, - ACTIONS(67), 1, - anon_sym_goto, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(77), 1, - sym_number_literal, - ACTIONS(952), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1051), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(83), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(592), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(214), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [2875] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(103), 1, - anon_sym_SEMI, - ACTIONS(109), 1, - anon_sym_LBRACE, - ACTIONS(113), 1, - anon_sym_if, - ACTIONS(115), 1, - anon_sym_switch, - ACTIONS(117), 1, - anon_sym_case, - ACTIONS(119), 1, - anon_sym_default, - ACTIONS(121), 1, - anon_sym_while, - ACTIONS(123), 1, - anon_sym_do, - ACTIONS(125), 1, - anon_sym_for, - ACTIONS(127), 1, - anon_sym_return, - ACTIONS(129), 1, - anon_sym_break, - ACTIONS(131), 1, - anon_sym_continue, - ACTIONS(133), 1, - anon_sym_goto, - ACTIONS(135), 1, - sym_number_literal, - ACTIONS(950), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1064), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(137), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(598), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(159), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [3000] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(103), 1, - anon_sym_SEMI, - ACTIONS(109), 1, - anon_sym_LBRACE, - ACTIONS(113), 1, - anon_sym_if, - ACTIONS(115), 1, - anon_sym_switch, - ACTIONS(117), 1, - anon_sym_case, - ACTIONS(119), 1, - anon_sym_default, - ACTIONS(121), 1, - anon_sym_while, - ACTIONS(123), 1, - anon_sym_do, - ACTIONS(125), 1, - anon_sym_for, - ACTIONS(127), 1, - anon_sym_return, - ACTIONS(129), 1, - anon_sym_break, - ACTIONS(131), 1, - anon_sym_continue, - ACTIONS(133), 1, - anon_sym_goto, - ACTIONS(135), 1, - sym_number_literal, - ACTIONS(950), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1064), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(137), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(598), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(167), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [3125] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(304), 1, - anon_sym_SEMI, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(316), 1, - anon_sym_if, - ACTIONS(318), 1, - anon_sym_switch, - ACTIONS(320), 1, - anon_sym_case, - ACTIONS(322), 1, - anon_sym_default, - ACTIONS(324), 1, - anon_sym_while, - ACTIONS(326), 1, - anon_sym_do, - ACTIONS(328), 1, - anon_sym_for, - ACTIONS(330), 1, - anon_sym_return, - ACTIONS(332), 1, - anon_sym_break, - ACTIONS(334), 1, - anon_sym_continue, - ACTIONS(336), 1, - anon_sym_goto, - ACTIONS(338), 1, - sym_number_literal, - ACTIONS(954), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1137), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(340), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(605), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(198), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [3250] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(430), 1, - anon_sym_SEMI, - ACTIONS(436), 1, - anon_sym_LBRACE, - ACTIONS(440), 1, - anon_sym_if, - ACTIONS(442), 1, - anon_sym_switch, - ACTIONS(444), 1, - anon_sym_case, - ACTIONS(446), 1, - anon_sym_default, - ACTIONS(448), 1, - anon_sym_while, - ACTIONS(450), 1, - anon_sym_do, - ACTIONS(452), 1, - anon_sym_for, - ACTIONS(454), 1, - anon_sym_return, - ACTIONS(456), 1, - anon_sym_break, - ACTIONS(458), 1, - anon_sym_continue, - ACTIONS(460), 1, - anon_sym_goto, - ACTIONS(462), 1, - sym_number_literal, - ACTIONS(956), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1015), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(464), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(593), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(282), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [3375] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(304), 1, - anon_sym_SEMI, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(316), 1, - anon_sym_if, - ACTIONS(318), 1, - anon_sym_switch, - ACTIONS(320), 1, - anon_sym_case, - ACTIONS(322), 1, - anon_sym_default, - ACTIONS(324), 1, - anon_sym_while, - ACTIONS(326), 1, - anon_sym_do, - ACTIONS(328), 1, - anon_sym_for, - ACTIONS(330), 1, - anon_sym_return, - ACTIONS(332), 1, - anon_sym_break, - ACTIONS(334), 1, - anon_sym_continue, - ACTIONS(336), 1, - anon_sym_goto, - ACTIONS(338), 1, - sym_number_literal, - ACTIONS(954), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1137), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(340), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(605), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(201), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [3500] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_SEMI, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(47), 1, - anon_sym_if, - ACTIONS(49), 1, - anon_sym_switch, - ACTIONS(51), 1, - anon_sym_case, - ACTIONS(53), 1, - anon_sym_default, - ACTIONS(55), 1, - anon_sym_while, - ACTIONS(57), 1, - anon_sym_do, - ACTIONS(59), 1, - anon_sym_for, - ACTIONS(61), 1, - anon_sym_return, - ACTIONS(63), 1, - anon_sym_break, - ACTIONS(65), 1, - anon_sym_continue, - ACTIONS(67), 1, - anon_sym_goto, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(77), 1, - sym_number_literal, - ACTIONS(952), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1051), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(83), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(592), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(231), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [3625] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(304), 1, - anon_sym_SEMI, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(316), 1, - anon_sym_if, - ACTIONS(318), 1, - anon_sym_switch, - ACTIONS(320), 1, - anon_sym_case, - ACTIONS(322), 1, - anon_sym_default, - ACTIONS(324), 1, - anon_sym_while, - ACTIONS(326), 1, - anon_sym_do, - ACTIONS(328), 1, - anon_sym_for, - ACTIONS(330), 1, - anon_sym_return, - ACTIONS(332), 1, - anon_sym_break, - ACTIONS(334), 1, - anon_sym_continue, - ACTIONS(336), 1, - anon_sym_goto, - ACTIONS(338), 1, - sym_number_literal, - ACTIONS(954), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1137), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(340), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(605), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(212), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [3750] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(430), 1, - anon_sym_SEMI, - ACTIONS(436), 1, - anon_sym_LBRACE, - ACTIONS(440), 1, - anon_sym_if, - ACTIONS(442), 1, - anon_sym_switch, - ACTIONS(444), 1, - anon_sym_case, - ACTIONS(446), 1, - anon_sym_default, - ACTIONS(448), 1, - anon_sym_while, - ACTIONS(450), 1, - anon_sym_do, - ACTIONS(452), 1, - anon_sym_for, - ACTIONS(454), 1, - anon_sym_return, - ACTIONS(456), 1, - anon_sym_break, - ACTIONS(458), 1, - anon_sym_continue, - ACTIONS(460), 1, - anon_sym_goto, - ACTIONS(462), 1, - sym_number_literal, - ACTIONS(956), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1015), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(464), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(593), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(290), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [3875] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(430), 1, - anon_sym_SEMI, - ACTIONS(436), 1, - anon_sym_LBRACE, - ACTIONS(440), 1, - anon_sym_if, - ACTIONS(442), 1, - anon_sym_switch, - ACTIONS(444), 1, - anon_sym_case, - ACTIONS(446), 1, - anon_sym_default, - ACTIONS(448), 1, - anon_sym_while, - ACTIONS(450), 1, - anon_sym_do, - ACTIONS(452), 1, - anon_sym_for, - ACTIONS(454), 1, - anon_sym_return, - ACTIONS(456), 1, - anon_sym_break, - ACTIONS(458), 1, - anon_sym_continue, - ACTIONS(460), 1, - anon_sym_goto, - ACTIONS(462), 1, - sym_number_literal, - ACTIONS(956), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1015), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(464), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(593), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(291), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [4000] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(430), 1, - anon_sym_SEMI, - ACTIONS(436), 1, - anon_sym_LBRACE, - ACTIONS(440), 1, - anon_sym_if, - ACTIONS(442), 1, - anon_sym_switch, - ACTIONS(444), 1, - anon_sym_case, - ACTIONS(446), 1, - anon_sym_default, - ACTIONS(448), 1, - anon_sym_while, - ACTIONS(450), 1, - anon_sym_do, - ACTIONS(452), 1, - anon_sym_for, - ACTIONS(454), 1, - anon_sym_return, - ACTIONS(456), 1, - anon_sym_break, - ACTIONS(458), 1, - anon_sym_continue, - ACTIONS(460), 1, - anon_sym_goto, - ACTIONS(462), 1, - sym_number_literal, - ACTIONS(956), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1015), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(464), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(593), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(280), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [4125] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(430), 1, - anon_sym_SEMI, - ACTIONS(436), 1, - anon_sym_LBRACE, - ACTIONS(440), 1, - anon_sym_if, - ACTIONS(442), 1, - anon_sym_switch, - ACTIONS(444), 1, - anon_sym_case, - ACTIONS(446), 1, - anon_sym_default, - ACTIONS(448), 1, - anon_sym_while, - ACTIONS(450), 1, - anon_sym_do, - ACTIONS(452), 1, - anon_sym_for, - ACTIONS(454), 1, - anon_sym_return, - ACTIONS(456), 1, - anon_sym_break, - ACTIONS(458), 1, - anon_sym_continue, - ACTIONS(460), 1, - anon_sym_goto, - ACTIONS(462), 1, - sym_number_literal, - ACTIONS(956), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1015), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(464), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(593), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(279), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [4250] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_SEMI, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(47), 1, - anon_sym_if, - ACTIONS(49), 1, - anon_sym_switch, - ACTIONS(51), 1, - anon_sym_case, - ACTIONS(53), 1, - anon_sym_default, - ACTIONS(55), 1, - anon_sym_while, - ACTIONS(57), 1, - anon_sym_do, - ACTIONS(59), 1, - anon_sym_for, - ACTIONS(61), 1, - anon_sym_return, - ACTIONS(63), 1, - anon_sym_break, - ACTIONS(65), 1, - anon_sym_continue, - ACTIONS(67), 1, - anon_sym_goto, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(77), 1, - sym_number_literal, - ACTIONS(952), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1051), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(83), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(592), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(230), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [4375] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_SEMI, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(47), 1, - anon_sym_if, - ACTIONS(49), 1, - anon_sym_switch, - ACTIONS(51), 1, - anon_sym_case, - ACTIONS(53), 1, - anon_sym_default, - ACTIONS(55), 1, - anon_sym_while, - ACTIONS(57), 1, - anon_sym_do, - ACTIONS(59), 1, - anon_sym_for, - ACTIONS(61), 1, - anon_sym_return, - ACTIONS(63), 1, - anon_sym_break, - ACTIONS(65), 1, - anon_sym_continue, - ACTIONS(67), 1, - anon_sym_goto, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(77), 1, - sym_number_literal, - ACTIONS(952), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1051), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(83), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(592), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(194), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [4500] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(103), 1, - anon_sym_SEMI, - ACTIONS(109), 1, - anon_sym_LBRACE, - ACTIONS(113), 1, - anon_sym_if, - ACTIONS(115), 1, - anon_sym_switch, - ACTIONS(117), 1, - anon_sym_case, - ACTIONS(119), 1, - anon_sym_default, - ACTIONS(121), 1, - anon_sym_while, - ACTIONS(123), 1, - anon_sym_do, - ACTIONS(125), 1, - anon_sym_for, - ACTIONS(127), 1, - anon_sym_return, - ACTIONS(129), 1, - anon_sym_break, - ACTIONS(131), 1, - anon_sym_continue, - ACTIONS(133), 1, - anon_sym_goto, - ACTIONS(135), 1, - sym_number_literal, - ACTIONS(950), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1064), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(137), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(598), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(161), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [4625] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(103), 1, - anon_sym_SEMI, - ACTIONS(109), 1, - anon_sym_LBRACE, - ACTIONS(113), 1, - anon_sym_if, - ACTIONS(115), 1, - anon_sym_switch, - ACTIONS(117), 1, - anon_sym_case, - ACTIONS(119), 1, - anon_sym_default, - ACTIONS(121), 1, - anon_sym_while, - ACTIONS(123), 1, - anon_sym_do, - ACTIONS(125), 1, - anon_sym_for, - ACTIONS(127), 1, - anon_sym_return, - ACTIONS(129), 1, - anon_sym_break, - ACTIONS(131), 1, - anon_sym_continue, - ACTIONS(133), 1, - anon_sym_goto, - ACTIONS(135), 1, - sym_number_literal, - ACTIONS(950), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1064), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(137), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(598), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(137), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [4750] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_SEMI, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(47), 1, - anon_sym_if, - ACTIONS(49), 1, - anon_sym_switch, - ACTIONS(51), 1, - anon_sym_case, - ACTIONS(53), 1, - anon_sym_default, - ACTIONS(55), 1, - anon_sym_while, - ACTIONS(57), 1, - anon_sym_do, - ACTIONS(59), 1, - anon_sym_for, - ACTIONS(61), 1, - anon_sym_return, - ACTIONS(63), 1, - anon_sym_break, - ACTIONS(65), 1, - anon_sym_continue, - ACTIONS(67), 1, - anon_sym_goto, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(77), 1, - sym_number_literal, - ACTIONS(952), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1051), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(83), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(592), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(1151), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [4875] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_SEMI, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(47), 1, - anon_sym_if, - ACTIONS(49), 1, - anon_sym_switch, - ACTIONS(51), 1, - anon_sym_case, - ACTIONS(53), 1, - anon_sym_default, - ACTIONS(55), 1, - anon_sym_while, - ACTIONS(57), 1, - anon_sym_do, - ACTIONS(59), 1, - anon_sym_for, - ACTIONS(61), 1, - anon_sym_return, - ACTIONS(63), 1, - anon_sym_break, - ACTIONS(65), 1, - anon_sym_continue, - ACTIONS(67), 1, - anon_sym_goto, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(77), 1, - sym_number_literal, - ACTIONS(952), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1051), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(83), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(592), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(234), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [5000] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(103), 1, - anon_sym_SEMI, - ACTIONS(109), 1, - anon_sym_LBRACE, - ACTIONS(113), 1, - anon_sym_if, - ACTIONS(115), 1, - anon_sym_switch, - ACTIONS(117), 1, - anon_sym_case, - ACTIONS(119), 1, - anon_sym_default, - ACTIONS(121), 1, - anon_sym_while, - ACTIONS(123), 1, - anon_sym_do, - ACTIONS(125), 1, - anon_sym_for, - ACTIONS(127), 1, - anon_sym_return, - ACTIONS(129), 1, - anon_sym_break, - ACTIONS(131), 1, - anon_sym_continue, - ACTIONS(133), 1, - anon_sym_goto, - ACTIONS(135), 1, - sym_number_literal, - ACTIONS(950), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1064), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(137), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(598), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(147), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [5125] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_SEMI, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(47), 1, - anon_sym_if, - ACTIONS(49), 1, - anon_sym_switch, - ACTIONS(51), 1, - anon_sym_case, - ACTIONS(53), 1, - anon_sym_default, - ACTIONS(55), 1, - anon_sym_while, - ACTIONS(57), 1, - anon_sym_do, - ACTIONS(59), 1, - anon_sym_for, - ACTIONS(61), 1, - anon_sym_return, - ACTIONS(63), 1, - anon_sym_break, - ACTIONS(65), 1, - anon_sym_continue, - ACTIONS(67), 1, - anon_sym_goto, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(77), 1, - sym_number_literal, - ACTIONS(952), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1051), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(83), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(592), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(228), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [5250] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(430), 1, - anon_sym_SEMI, - ACTIONS(436), 1, - anon_sym_LBRACE, - ACTIONS(440), 1, - anon_sym_if, - ACTIONS(442), 1, - anon_sym_switch, - ACTIONS(444), 1, - anon_sym_case, - ACTIONS(446), 1, - anon_sym_default, - ACTIONS(448), 1, - anon_sym_while, - ACTIONS(450), 1, - anon_sym_do, - ACTIONS(452), 1, - anon_sym_for, - ACTIONS(454), 1, - anon_sym_return, - ACTIONS(456), 1, - anon_sym_break, - ACTIONS(458), 1, - anon_sym_continue, - ACTIONS(460), 1, - anon_sym_goto, - ACTIONS(462), 1, - sym_number_literal, - ACTIONS(956), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1015), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(464), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(593), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(271), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [5375] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(430), 1, - anon_sym_SEMI, - ACTIONS(436), 1, - anon_sym_LBRACE, - ACTIONS(440), 1, - anon_sym_if, - ACTIONS(442), 1, - anon_sym_switch, - ACTIONS(444), 1, - anon_sym_case, - ACTIONS(446), 1, - anon_sym_default, - ACTIONS(448), 1, - anon_sym_while, - ACTIONS(450), 1, - anon_sym_do, - ACTIONS(452), 1, - anon_sym_for, - ACTIONS(454), 1, - anon_sym_return, - ACTIONS(456), 1, - anon_sym_break, - ACTIONS(458), 1, - anon_sym_continue, - ACTIONS(460), 1, - anon_sym_goto, - ACTIONS(462), 1, - sym_number_literal, - ACTIONS(956), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1015), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(464), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(593), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(267), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [5500] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_SEMI, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(47), 1, - anon_sym_if, - ACTIONS(49), 1, - anon_sym_switch, - ACTIONS(51), 1, - anon_sym_case, - ACTIONS(53), 1, - anon_sym_default, - ACTIONS(55), 1, - anon_sym_while, - ACTIONS(57), 1, - anon_sym_do, - ACTIONS(59), 1, - anon_sym_for, - ACTIONS(61), 1, - anon_sym_return, - ACTIONS(63), 1, - anon_sym_break, - ACTIONS(65), 1, - anon_sym_continue, - ACTIONS(67), 1, - anon_sym_goto, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(77), 1, - sym_number_literal, - ACTIONS(952), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1051), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(83), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(592), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(218), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [5625] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(430), 1, - anon_sym_SEMI, - ACTIONS(436), 1, - anon_sym_LBRACE, - ACTIONS(440), 1, - anon_sym_if, - ACTIONS(442), 1, - anon_sym_switch, - ACTIONS(444), 1, - anon_sym_case, - ACTIONS(446), 1, - anon_sym_default, - ACTIONS(448), 1, - anon_sym_while, - ACTIONS(450), 1, - anon_sym_do, - ACTIONS(452), 1, - anon_sym_for, - ACTIONS(454), 1, - anon_sym_return, - ACTIONS(456), 1, - anon_sym_break, - ACTIONS(458), 1, - anon_sym_continue, - ACTIONS(460), 1, - anon_sym_goto, - ACTIONS(462), 1, - sym_number_literal, - ACTIONS(956), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1015), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(464), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(593), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(266), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [5750] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(304), 1, - anon_sym_SEMI, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(316), 1, - anon_sym_if, - ACTIONS(318), 1, - anon_sym_switch, - ACTIONS(320), 1, - anon_sym_case, - ACTIONS(322), 1, - anon_sym_default, - ACTIONS(324), 1, - anon_sym_while, - ACTIONS(326), 1, - anon_sym_do, - ACTIONS(328), 1, - anon_sym_for, - ACTIONS(330), 1, - anon_sym_return, - ACTIONS(332), 1, - anon_sym_break, - ACTIONS(334), 1, - anon_sym_continue, - ACTIONS(336), 1, - anon_sym_goto, - ACTIONS(338), 1, - sym_number_literal, - ACTIONS(954), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1137), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(340), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(605), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(209), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [5875] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(430), 1, - anon_sym_SEMI, - ACTIONS(436), 1, - anon_sym_LBRACE, - ACTIONS(440), 1, - anon_sym_if, - ACTIONS(442), 1, - anon_sym_switch, - ACTIONS(444), 1, - anon_sym_case, - ACTIONS(446), 1, - anon_sym_default, - ACTIONS(448), 1, - anon_sym_while, - ACTIONS(450), 1, - anon_sym_do, - ACTIONS(452), 1, - anon_sym_for, - ACTIONS(454), 1, - anon_sym_return, - ACTIONS(456), 1, - anon_sym_break, - ACTIONS(458), 1, - anon_sym_continue, - ACTIONS(460), 1, - anon_sym_goto, - ACTIONS(462), 1, - sym_number_literal, - ACTIONS(956), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1015), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(464), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(593), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(262), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [6000] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_SEMI, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(47), 1, - anon_sym_if, - ACTIONS(49), 1, - anon_sym_switch, - ACTIONS(51), 1, - anon_sym_case, - ACTIONS(53), 1, - anon_sym_default, - ACTIONS(55), 1, - anon_sym_while, - ACTIONS(57), 1, - anon_sym_do, - ACTIONS(59), 1, - anon_sym_for, - ACTIONS(61), 1, - anon_sym_return, - ACTIONS(63), 1, - anon_sym_break, - ACTIONS(65), 1, - anon_sym_continue, - ACTIONS(67), 1, - anon_sym_goto, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(77), 1, - sym_number_literal, - ACTIONS(952), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1051), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(83), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(592), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(213), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [6125] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(304), 1, - anon_sym_SEMI, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(316), 1, - anon_sym_if, - ACTIONS(318), 1, - anon_sym_switch, - ACTIONS(320), 1, - anon_sym_case, - ACTIONS(322), 1, - anon_sym_default, - ACTIONS(324), 1, - anon_sym_while, - ACTIONS(326), 1, - anon_sym_do, - ACTIONS(328), 1, - anon_sym_for, - ACTIONS(330), 1, - anon_sym_return, - ACTIONS(332), 1, - anon_sym_break, - ACTIONS(334), 1, - anon_sym_continue, - ACTIONS(336), 1, - anon_sym_goto, - ACTIONS(338), 1, - sym_number_literal, - ACTIONS(954), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1137), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(340), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(605), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(294), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [6250] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(430), 1, - anon_sym_SEMI, - ACTIONS(436), 1, - anon_sym_LBRACE, - ACTIONS(440), 1, - anon_sym_if, - ACTIONS(442), 1, - anon_sym_switch, - ACTIONS(444), 1, - anon_sym_case, - ACTIONS(446), 1, - anon_sym_default, - ACTIONS(448), 1, - anon_sym_while, - ACTIONS(450), 1, - anon_sym_do, - ACTIONS(452), 1, - anon_sym_for, - ACTIONS(454), 1, - anon_sym_return, - ACTIONS(456), 1, - anon_sym_break, - ACTIONS(458), 1, - anon_sym_continue, - ACTIONS(460), 1, - anon_sym_goto, - ACTIONS(462), 1, - sym_number_literal, - ACTIONS(956), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1015), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(464), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(593), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(261), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [6375] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_SEMI, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(47), 1, - anon_sym_if, - ACTIONS(49), 1, - anon_sym_switch, - ACTIONS(51), 1, - anon_sym_case, - ACTIONS(53), 1, - anon_sym_default, - ACTIONS(55), 1, - anon_sym_while, - ACTIONS(57), 1, - anon_sym_do, - ACTIONS(59), 1, - anon_sym_for, - ACTIONS(61), 1, - anon_sym_return, - ACTIONS(63), 1, - anon_sym_break, - ACTIONS(65), 1, - anon_sym_continue, - ACTIONS(67), 1, - anon_sym_goto, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(77), 1, - sym_number_literal, - ACTIONS(952), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1051), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(83), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(592), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(211), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [6500] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(304), 1, - anon_sym_SEMI, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(316), 1, - anon_sym_if, - ACTIONS(318), 1, - anon_sym_switch, - ACTIONS(320), 1, - anon_sym_case, - ACTIONS(322), 1, - anon_sym_default, - ACTIONS(324), 1, - anon_sym_while, - ACTIONS(326), 1, - anon_sym_do, - ACTIONS(328), 1, - anon_sym_for, - ACTIONS(330), 1, - anon_sym_return, - ACTIONS(332), 1, - anon_sym_break, - ACTIONS(334), 1, - anon_sym_continue, - ACTIONS(336), 1, - anon_sym_goto, - ACTIONS(338), 1, - sym_number_literal, - ACTIONS(954), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1137), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(340), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(605), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(202), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [6625] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(103), 1, - anon_sym_SEMI, - ACTIONS(109), 1, - anon_sym_LBRACE, - ACTIONS(113), 1, - anon_sym_if, - ACTIONS(115), 1, - anon_sym_switch, - ACTIONS(117), 1, - anon_sym_case, - ACTIONS(119), 1, - anon_sym_default, - ACTIONS(121), 1, - anon_sym_while, - ACTIONS(123), 1, - anon_sym_do, - ACTIONS(125), 1, - anon_sym_for, - ACTIONS(127), 1, - anon_sym_return, - ACTIONS(129), 1, - anon_sym_break, - ACTIONS(131), 1, - anon_sym_continue, - ACTIONS(133), 1, - anon_sym_goto, - ACTIONS(135), 1, - sym_number_literal, - ACTIONS(950), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1064), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(137), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(598), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(164), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [6750] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(304), 1, - anon_sym_SEMI, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(316), 1, - anon_sym_if, - ACTIONS(318), 1, - anon_sym_switch, - ACTIONS(320), 1, - anon_sym_case, - ACTIONS(322), 1, - anon_sym_default, - ACTIONS(324), 1, - anon_sym_while, - ACTIONS(326), 1, - anon_sym_do, - ACTIONS(328), 1, - anon_sym_for, - ACTIONS(330), 1, - anon_sym_return, - ACTIONS(332), 1, - anon_sym_break, - ACTIONS(334), 1, - anon_sym_continue, - ACTIONS(336), 1, - anon_sym_goto, - ACTIONS(338), 1, - sym_number_literal, - ACTIONS(954), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1137), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(340), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(605), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(292), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [6875] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(103), 1, - anon_sym_SEMI, - ACTIONS(109), 1, - anon_sym_LBRACE, - ACTIONS(113), 1, - anon_sym_if, - ACTIONS(115), 1, - anon_sym_switch, - ACTIONS(117), 1, - anon_sym_case, - ACTIONS(119), 1, - anon_sym_default, - ACTIONS(121), 1, - anon_sym_while, - ACTIONS(123), 1, - anon_sym_do, - ACTIONS(125), 1, - anon_sym_for, - ACTIONS(127), 1, - anon_sym_return, - ACTIONS(129), 1, - anon_sym_break, - ACTIONS(131), 1, - anon_sym_continue, - ACTIONS(133), 1, - anon_sym_goto, - ACTIONS(135), 1, - sym_number_literal, - ACTIONS(950), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1064), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(137), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(598), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(138), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [7000] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(430), 1, - anon_sym_SEMI, - ACTIONS(436), 1, - anon_sym_LBRACE, - ACTIONS(440), 1, - anon_sym_if, - ACTIONS(442), 1, - anon_sym_switch, - ACTIONS(444), 1, - anon_sym_case, - ACTIONS(446), 1, - anon_sym_default, - ACTIONS(448), 1, - anon_sym_while, - ACTIONS(450), 1, - anon_sym_do, - ACTIONS(452), 1, - anon_sym_for, - ACTIONS(454), 1, - anon_sym_return, - ACTIONS(456), 1, - anon_sym_break, - ACTIONS(458), 1, - anon_sym_continue, - ACTIONS(460), 1, - anon_sym_goto, - ACTIONS(462), 1, - sym_number_literal, - ACTIONS(956), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1015), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(464), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(593), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(275), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [7125] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(304), 1, - anon_sym_SEMI, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(316), 1, - anon_sym_if, - ACTIONS(318), 1, - anon_sym_switch, - ACTIONS(320), 1, - anon_sym_case, - ACTIONS(322), 1, - anon_sym_default, - ACTIONS(324), 1, - anon_sym_while, - ACTIONS(326), 1, - anon_sym_do, - ACTIONS(328), 1, - anon_sym_for, - ACTIONS(330), 1, - anon_sym_return, - ACTIONS(332), 1, - anon_sym_break, - ACTIONS(334), 1, - anon_sym_continue, - ACTIONS(336), 1, - anon_sym_goto, - ACTIONS(338), 1, - sym_number_literal, - ACTIONS(954), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1137), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(340), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(605), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(206), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [7250] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(304), 1, - anon_sym_SEMI, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(316), 1, - anon_sym_if, - ACTIONS(318), 1, - anon_sym_switch, - ACTIONS(320), 1, - anon_sym_case, - ACTIONS(322), 1, - anon_sym_default, - ACTIONS(324), 1, - anon_sym_while, - ACTIONS(326), 1, - anon_sym_do, - ACTIONS(328), 1, - anon_sym_for, - ACTIONS(330), 1, - anon_sym_return, - ACTIONS(332), 1, - anon_sym_break, - ACTIONS(334), 1, - anon_sym_continue, - ACTIONS(336), 1, - anon_sym_goto, - ACTIONS(338), 1, - sym_number_literal, - ACTIONS(954), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1137), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(340), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(605), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(286), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [7375] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(430), 1, - anon_sym_SEMI, - ACTIONS(436), 1, - anon_sym_LBRACE, - ACTIONS(440), 1, - anon_sym_if, - ACTIONS(442), 1, - anon_sym_switch, - ACTIONS(444), 1, - anon_sym_case, - ACTIONS(446), 1, - anon_sym_default, - ACTIONS(448), 1, - anon_sym_while, - ACTIONS(450), 1, - anon_sym_do, - ACTIONS(452), 1, - anon_sym_for, - ACTIONS(454), 1, - anon_sym_return, - ACTIONS(456), 1, - anon_sym_break, - ACTIONS(458), 1, - anon_sym_continue, - ACTIONS(460), 1, - anon_sym_goto, - ACTIONS(462), 1, - sym_number_literal, - ACTIONS(956), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1015), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(464), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(593), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(257), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [7500] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(103), 1, - anon_sym_SEMI, - ACTIONS(109), 1, - anon_sym_LBRACE, - ACTIONS(113), 1, - anon_sym_if, - ACTIONS(115), 1, - anon_sym_switch, - ACTIONS(117), 1, - anon_sym_case, - ACTIONS(119), 1, - anon_sym_default, - ACTIONS(121), 1, - anon_sym_while, - ACTIONS(123), 1, - anon_sym_do, - ACTIONS(125), 1, - anon_sym_for, - ACTIONS(127), 1, - anon_sym_return, - ACTIONS(129), 1, - anon_sym_break, - ACTIONS(131), 1, - anon_sym_continue, - ACTIONS(133), 1, - anon_sym_goto, - ACTIONS(135), 1, - sym_number_literal, - ACTIONS(950), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1064), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(137), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(598), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(140), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [7625] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(304), 1, - anon_sym_SEMI, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(316), 1, - anon_sym_if, - ACTIONS(318), 1, - anon_sym_switch, - ACTIONS(320), 1, - anon_sym_case, - ACTIONS(322), 1, - anon_sym_default, - ACTIONS(324), 1, - anon_sym_while, - ACTIONS(326), 1, - anon_sym_do, - ACTIONS(328), 1, - anon_sym_for, - ACTIONS(330), 1, - anon_sym_return, - ACTIONS(332), 1, - anon_sym_break, - ACTIONS(334), 1, - anon_sym_continue, - ACTIONS(336), 1, - anon_sym_goto, - ACTIONS(338), 1, - sym_number_literal, - ACTIONS(954), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1137), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(340), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(605), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(203), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [7750] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(103), 1, - anon_sym_SEMI, - ACTIONS(109), 1, - anon_sym_LBRACE, - ACTIONS(113), 1, - anon_sym_if, - ACTIONS(115), 1, - anon_sym_switch, - ACTIONS(117), 1, - anon_sym_case, - ACTIONS(119), 1, - anon_sym_default, - ACTIONS(121), 1, - anon_sym_while, - ACTIONS(123), 1, - anon_sym_do, - ACTIONS(125), 1, - anon_sym_for, - ACTIONS(127), 1, - anon_sym_return, - ACTIONS(129), 1, - anon_sym_break, - ACTIONS(131), 1, - anon_sym_continue, - ACTIONS(133), 1, - anon_sym_goto, - ACTIONS(135), 1, - sym_number_literal, - ACTIONS(950), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1064), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(137), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(598), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(158), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [7875] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(103), 1, - anon_sym_SEMI, - ACTIONS(109), 1, - anon_sym_LBRACE, - ACTIONS(113), 1, - anon_sym_if, - ACTIONS(115), 1, - anon_sym_switch, - ACTIONS(117), 1, - anon_sym_case, - ACTIONS(119), 1, - anon_sym_default, - ACTIONS(121), 1, - anon_sym_while, - ACTIONS(123), 1, - anon_sym_do, - ACTIONS(125), 1, - anon_sym_for, - ACTIONS(127), 1, - anon_sym_return, - ACTIONS(129), 1, - anon_sym_break, - ACTIONS(131), 1, - anon_sym_continue, - ACTIONS(133), 1, - anon_sym_goto, - ACTIONS(135), 1, - sym_number_literal, - ACTIONS(950), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1064), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(137), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(598), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(144), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [8000] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(304), 1, - anon_sym_SEMI, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(316), 1, - anon_sym_if, - ACTIONS(318), 1, - anon_sym_switch, - ACTIONS(320), 1, - anon_sym_case, - ACTIONS(322), 1, - anon_sym_default, - ACTIONS(324), 1, - anon_sym_while, - ACTIONS(326), 1, - anon_sym_do, - ACTIONS(328), 1, - anon_sym_for, - ACTIONS(330), 1, - anon_sym_return, - ACTIONS(332), 1, - anon_sym_break, - ACTIONS(334), 1, - anon_sym_continue, - ACTIONS(336), 1, - anon_sym_goto, - ACTIONS(338), 1, - sym_number_literal, - ACTIONS(954), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1137), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(340), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(605), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(204), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [8125] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(103), 1, - anon_sym_SEMI, - ACTIONS(109), 1, - anon_sym_LBRACE, - ACTIONS(113), 1, - anon_sym_if, - ACTIONS(115), 1, - anon_sym_switch, - ACTIONS(117), 1, - anon_sym_case, - ACTIONS(119), 1, - anon_sym_default, - ACTIONS(121), 1, - anon_sym_while, - ACTIONS(123), 1, - anon_sym_do, - ACTIONS(125), 1, - anon_sym_for, - ACTIONS(127), 1, - anon_sym_return, - ACTIONS(129), 1, - anon_sym_break, - ACTIONS(131), 1, - anon_sym_continue, - ACTIONS(133), 1, - anon_sym_goto, - ACTIONS(135), 1, - sym_number_literal, - ACTIONS(950), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1064), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(137), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(598), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(165), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [8250] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_SEMI, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(47), 1, - anon_sym_if, - ACTIONS(49), 1, - anon_sym_switch, - ACTIONS(51), 1, - anon_sym_case, - ACTIONS(53), 1, - anon_sym_default, - ACTIONS(55), 1, - anon_sym_while, - ACTIONS(57), 1, - anon_sym_do, - ACTIONS(59), 1, - anon_sym_for, - ACTIONS(61), 1, - anon_sym_return, - ACTIONS(63), 1, - anon_sym_break, - ACTIONS(65), 1, - anon_sym_continue, - ACTIONS(67), 1, - anon_sym_goto, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(77), 1, - sym_number_literal, - ACTIONS(952), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1051), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(83), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(592), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(221), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [8375] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(304), 1, - anon_sym_SEMI, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(316), 1, - anon_sym_if, - ACTIONS(318), 1, - anon_sym_switch, - ACTIONS(320), 1, - anon_sym_case, - ACTIONS(322), 1, - anon_sym_default, - ACTIONS(324), 1, - anon_sym_while, - ACTIONS(326), 1, - anon_sym_do, - ACTIONS(328), 1, - anon_sym_for, - ACTIONS(330), 1, - anon_sym_return, - ACTIONS(332), 1, - anon_sym_break, - ACTIONS(334), 1, - anon_sym_continue, - ACTIONS(336), 1, - anon_sym_goto, - ACTIONS(338), 1, - sym_number_literal, - ACTIONS(954), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(1137), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(340), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(605), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - STATE(205), 13, - sym_compound_statement, - sym_labeled_statement, - sym_expression_statement, - sym_if_statement, - sym_switch_statement, - sym_case_statement, - sym_while_statement, - sym_do_statement, - sym_for_statement, - sym_return_statement, - sym_break_statement, - sym_continue_statement, - sym_goto_statement, - [8500] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(31), 1, - anon_sym_STAR, - ACTIONS(69), 1, - anon_sym_TILDE, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(908), 1, - anon_sym_LBRACE, - ACTIONS(910), 1, - anon_sym_AMP, - ACTIONS(922), 1, - sym_number_literal, - ACTIONS(958), 1, - sym_identifier, - STATE(386), 1, - sym_string_literal, - STATE(436), 1, - sym_initializer_list, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(71), 3, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(902), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(912), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(413), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - ACTIONS(904), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DASH_GT, - [8604] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(962), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(960), 47, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [8673] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(968), 1, - anon_sym_else, - ACTIONS(966), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(964), 46, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [8744] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(970), 47, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [8813] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(974), 47, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [8882] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(980), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(978), 47, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [8951] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(984), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(982), 47, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [9020] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(988), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(986), 47, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [9089] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(992), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(990), 47, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [9158] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(994), 47, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [9227] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1000), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(998), 47, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [9296] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1004), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1002), 47, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [9365] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1008), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1006), 47, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [9434] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1012), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1010), 47, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [9503] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1016), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1014), 47, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [9572] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1020), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1018), 47, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [9641] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1024), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1022), 47, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [9710] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1028), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1026), 47, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [9779] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1032), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1030), 47, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [9848] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1036), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1034), 47, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [9917] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1040), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1038), 47, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [9986] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1044), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1042), 47, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [10055] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1048), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1046), 47, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [10124] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1052), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1050), 47, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [10193] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1056), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1054), 47, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [10262] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1060), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1058), 47, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [10331] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1064), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1062), 47, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [10400] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1068), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1066), 47, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [10469] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1072), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1070), 47, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [10538] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1076), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1074), 47, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [10607] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1080), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1078), 47, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [10676] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1084), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1082), 47, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [10745] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1088), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1086), 47, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [10814] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1092), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1090), 47, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [10883] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1096), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1094), 46, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [10951] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1100), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1098), 46, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [11019] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1102), 46, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [11087] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1108), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1106), 46, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [11155] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1112), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1110), 46, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [11223] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1116), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1114), 46, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [11291] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1120), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1118), 46, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [11359] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1124), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1122), 46, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [11427] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1128), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1126), 46, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [11495] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1132), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1130), 46, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [11563] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1136), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1134), 46, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [11631] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1140), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1138), 46, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [11699] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1144), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1142), 46, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [11767] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1148), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1146), 46, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [11835] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1152), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1150), 46, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [11903] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1156), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1154), 46, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [11971] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1160), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1158), 46, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [12039] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1164), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1162), 46, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [12107] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1168), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1166), 46, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [12175] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1172), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1170), 46, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [12243] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1176), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1174), 46, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [12311] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1180), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1178), 46, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [12379] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1016), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1014), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [12446] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1080), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1078), 45, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [12513] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(984), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(982), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [12580] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1012), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1010), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [12647] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(41), 1, - anon_sym_enum, - ACTIONS(43), 1, - anon_sym_struct, - ACTIONS(45), 1, - anon_sym_union, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(1182), 1, - sym_identifier, - ACTIONS(1186), 1, - sym_primitive_type, - ACTIONS(1188), 1, - sym_number_literal, - STATE(386), 1, - sym_string_literal, - STATE(764), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1035), 1, - sym_type_descriptor, - STATE(1036), 1, - sym_comma_expression, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - STATE(715), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1190), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(35), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(1184), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(760), 6, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(579), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [12760] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(994), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [12827] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1076), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1074), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [12894] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(970), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [12961] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1020), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1018), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [13028] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(992), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(990), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [13095] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(974), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [13162] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1052), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1050), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [13229] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(980), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(978), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [13296] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1004), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1002), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [13363] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1048), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1046), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [13430] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(980), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(978), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [13497] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1192), 1, - anon_sym_else, - ACTIONS(966), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(964), 43, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [13566] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1084), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1082), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [13633] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1064), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1062), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [13700] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(994), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [13767] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1060), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1058), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [13834] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1076), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1074), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [13901] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1072), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1070), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [13968] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(41), 1, - anon_sym_enum, - ACTIONS(43), 1, - anon_sym_struct, - ACTIONS(45), 1, - anon_sym_union, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(1182), 1, - sym_identifier, - ACTIONS(1186), 1, - sym_primitive_type, - ACTIONS(1188), 1, - sym_number_literal, - STATE(386), 1, - sym_string_literal, - STATE(764), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, - sym_comma_expression, - STATE(1116), 1, - sym_type_descriptor, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - STATE(715), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1190), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(35), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(1184), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(760), 6, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(579), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [14081] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1004), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1002), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [14148] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1048), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1046), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [14215] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(992), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(990), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [14282] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(41), 1, - anon_sym_enum, - ACTIONS(43), 1, - anon_sym_struct, - ACTIONS(45), 1, - anon_sym_union, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(1182), 1, - sym_identifier, - ACTIONS(1186), 1, - sym_primitive_type, - ACTIONS(1188), 1, - sym_number_literal, - STATE(386), 1, - sym_string_literal, - STATE(764), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, - sym_comma_expression, - STATE(1131), 1, - sym_type_descriptor, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - STATE(715), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1190), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(35), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(1184), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(760), 6, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(579), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [14395] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1016), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1014), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [14462] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(988), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(986), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [14529] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1000), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(998), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [14596] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(988), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(986), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [14663] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1080), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1078), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [14730] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1084), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1082), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [14797] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1008), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1006), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [14864] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1044), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1042), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [14931] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(962), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(960), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [14998] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1012), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1010), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [15065] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(974), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [15132] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1052), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1050), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [15199] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1044), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1042), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [15266] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1020), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1018), 45, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [15333] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1008), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1006), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [15400] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1092), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1090), 45, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [15467] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(962), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(960), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [15534] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1068), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1066), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [15601] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1028), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1026), 45, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [15668] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1088), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1086), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [15735] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1032), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1030), 45, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [15802] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1036), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1034), 45, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [15869] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1040), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1038), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [15936] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1024), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1022), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [16003] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1088), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1086), 45, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [16070] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1056), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1054), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [16137] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1092), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1090), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [16204] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1060), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1058), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [16271] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1194), 1, - anon_sym_else, - ACTIONS(966), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(964), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [16340] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1064), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1062), 45, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [16407] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1040), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1038), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [16474] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1072), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1070), 45, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [16541] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1016), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1014), 45, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [16608] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1000), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(998), 45, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [16675] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(984), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(982), 45, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [16742] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(970), 45, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [16809] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1092), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1090), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [16876] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(994), 45, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [16943] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1068), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1066), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [17010] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1024), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1022), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [17077] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1028), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1026), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [17144] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1076), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1074), 45, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [17211] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(992), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(990), 45, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [17278] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1040), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1038), 45, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [17345] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1028), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1026), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [17412] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1032), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1030), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [17479] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(974), 45, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [17546] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1052), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1050), 45, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [17613] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1036), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1034), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [17680] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1032), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1030), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [17747] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1036), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1034), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [17814] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(980), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(978), 45, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [17881] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1056), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1054), 45, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [17948] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1024), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1022), 45, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [18015] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1020), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1018), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [18082] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1004), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1002), 45, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [18149] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1048), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1046), 45, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [18216] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(41), 1, - anon_sym_enum, - ACTIONS(43), 1, - anon_sym_struct, - ACTIONS(45), 1, - anon_sym_union, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(1182), 1, - sym_identifier, - ACTIONS(1186), 1, - sym_primitive_type, - ACTIONS(1188), 1, - sym_number_literal, - STATE(386), 1, - sym_string_literal, - STATE(764), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, - sym_comma_expression, - STATE(1111), 1, - sym_type_descriptor, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - STATE(715), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1190), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(35), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(1184), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(760), 6, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(579), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [18329] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1068), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1066), 45, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [18396] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1084), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1082), 45, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [18463] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1060), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1058), 45, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [18530] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1056), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1054), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [18597] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(962), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(960), 45, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [18664] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1044), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1042), 45, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [18731] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(970), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [18798] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1080), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1078), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [18865] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1196), 1, - anon_sym_else, - ACTIONS(966), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(964), 43, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [18934] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1088), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1086), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [19001] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1012), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1010), 45, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [19068] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1064), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1062), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [19135] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1008), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1006), 45, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [19202] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(988), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(986), 45, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [19269] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1072), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1070), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [19336] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1000), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(998), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [19403] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(984), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(982), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [19470] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1144), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1142), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [19536] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1136), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1134), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [19602] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1144), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1142), 43, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [19668] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1100), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1098), 43, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [19734] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1100), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1098), 43, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [19800] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1128), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1126), 43, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [19866] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1112), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1110), 43, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [19932] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1124), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1122), 43, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [19998] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1128), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1126), 43, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [20064] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1164), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1162), 43, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [20130] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1120), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1118), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [20196] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1108), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1106), 43, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [20262] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1140), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1138), 43, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [20328] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1124), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1122), 43, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [20394] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1116), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1114), 43, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [20460] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1144), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1142), 43, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [20526] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1164), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1162), 43, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [20592] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1096), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1094), 43, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [20658] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1172), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1170), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [20724] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1180), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1178), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [20790] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1156), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1154), 43, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [20856] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1160), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1158), 43, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [20922] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1156), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1154), 43, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [20988] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1136), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1134), 43, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [21054] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1180), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1178), 43, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [21120] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1172), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1170), 43, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [21186] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1168), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1166), 43, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [21252] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1152), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1150), 43, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [21318] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1102), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [21384] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1148), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1146), 43, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [21450] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1152), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1150), 43, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [21516] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1176), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1174), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [21582] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1132), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1130), 43, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [21648] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1148), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1146), 43, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [21714] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1148), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1146), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [21780] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1176), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1174), 43, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [21846] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1152), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1150), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [21912] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1120), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1118), 43, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [21978] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1120), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1118), 43, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [22044] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1156), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1154), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [22110] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1128), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1126), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [22176] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1108), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1106), 43, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [22242] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1112), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1110), 43, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [22308] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1096), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1094), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [22374] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1132), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1130), 43, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [22440] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1116), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1114), 43, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [22506] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1116), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1114), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [22572] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1112), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1110), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [22638] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1176), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1174), 43, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [22704] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1132), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1130), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [22770] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1102), 43, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [22836] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1168), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1166), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [22902] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1096), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1094), 43, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [22968] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1136), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1134), 43, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [23034] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1168), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1166), 43, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [23100] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1102), 43, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [23166] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1124), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1122), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [23232] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1164), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1162), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [23298] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1100), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1098), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [23364] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1160), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1158), 43, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [23430] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1108), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1106), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [23496] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1140), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1138), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [23562] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1180), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1178), 43, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [23628] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1172), 15, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1170), 43, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [23694] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1160), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1158), 44, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [23760] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1140), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1138), 43, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [23826] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1202), 1, - anon_sym_SEMI, - ACTIONS(1205), 1, - anon_sym_LPAREN2, - ACTIONS(1209), 1, - anon_sym_STAR, - ACTIONS(1212), 1, - anon_sym_EQ, - ACTIONS(1214), 1, - anon_sym_COLON, - ACTIONS(1216), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1198), 11, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - sym_identifier, - ACTIONS(1218), 11, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1200), 13, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [23898] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1202), 1, - anon_sym_SEMI, - ACTIONS(1205), 1, - anon_sym_LPAREN2, - ACTIONS(1209), 1, - anon_sym_STAR, - ACTIONS(1212), 1, - anon_sym_EQ, - ACTIONS(1220), 1, - anon_sym_COLON, - ACTIONS(1216), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1198), 11, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - sym_identifier, - ACTIONS(1218), 11, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1200), 13, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [23970] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1202), 1, - anon_sym_SEMI, - ACTIONS(1205), 1, - anon_sym_LPAREN2, - ACTIONS(1209), 1, - anon_sym_STAR, - ACTIONS(1212), 1, - anon_sym_EQ, - ACTIONS(1222), 1, - anon_sym_COLON, - ACTIONS(1216), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1198), 11, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - sym_identifier, - ACTIONS(1218), 11, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1200), 13, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [24042] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1205), 1, - anon_sym_LPAREN2, - ACTIONS(1209), 1, - anon_sym_STAR, - ACTIONS(1212), 1, - anon_sym_EQ, - ACTIONS(1224), 1, - anon_sym_COLON, - ACTIONS(1216), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1198), 11, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - sym_identifier, - ACTIONS(1218), 11, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1200), 14, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [24112] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1202), 1, - anon_sym_SEMI, - ACTIONS(1205), 1, - anon_sym_LPAREN2, - ACTIONS(1209), 1, - anon_sym_STAR, - ACTIONS(1212), 1, - anon_sym_EQ, - ACTIONS(1224), 1, - anon_sym_COLON, - ACTIONS(1216), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1198), 11, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - sym_identifier, - ACTIONS(1218), 11, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1200), 13, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [24184] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1205), 1, - anon_sym_LPAREN2, - ACTIONS(1209), 1, - anon_sym_STAR, - ACTIONS(1212), 1, - anon_sym_EQ, - ACTIONS(1214), 1, - anon_sym_COLON, - ACTIONS(1216), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1198), 11, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - sym_identifier, - ACTIONS(1218), 11, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1200), 14, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [24254] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1205), 1, - anon_sym_LPAREN2, - ACTIONS(1209), 1, - anon_sym_STAR, - ACTIONS(1212), 1, - anon_sym_EQ, - ACTIONS(1220), 1, - anon_sym_COLON, - ACTIONS(1216), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1198), 11, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - sym_identifier, - ACTIONS(1218), 11, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1200), 14, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [24324] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1205), 1, - anon_sym_LPAREN2, - ACTIONS(1209), 1, - anon_sym_STAR, - ACTIONS(1212), 1, - anon_sym_EQ, - ACTIONS(1222), 1, - anon_sym_COLON, - ACTIONS(1216), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1198), 11, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - sym_identifier, - ACTIONS(1218), 11, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1200), 14, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [24394] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(25), 1, - anon_sym___attribute__, - ACTIONS(41), 1, - anon_sym_enum, - ACTIONS(43), 1, - anon_sym_struct, - ACTIONS(45), 1, - anon_sym_union, - ACTIONS(648), 1, - sym_primitive_type, - ACTIONS(1226), 1, - sym_identifier, - ACTIONS(1228), 1, - aux_sym_preproc_def_token1, - ACTIONS(1230), 1, - aux_sym_preproc_if_token1, - ACTIONS(1232), 1, - aux_sym_preproc_if_token2, - ACTIONS(1236), 1, - aux_sym_preproc_else_token1, - ACTIONS(1238), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1240), 1, - sym_preproc_directive, - STATE(707), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(771), 1, - sym__declaration_specifiers, - ACTIONS(1234), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(994), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(35), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(37), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(568), 4, - sym_attribute_specifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(33), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(723), 6, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(372), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [24491] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(25), 1, - anon_sym___attribute__, - ACTIONS(41), 1, - anon_sym_enum, - ACTIONS(43), 1, - anon_sym_struct, - ACTIONS(45), 1, - anon_sym_union, - ACTIONS(648), 1, - sym_primitive_type, - ACTIONS(1226), 1, - sym_identifier, - ACTIONS(1228), 1, - aux_sym_preproc_def_token1, - ACTIONS(1230), 1, - aux_sym_preproc_if_token1, - ACTIONS(1236), 1, - aux_sym_preproc_else_token1, - ACTIONS(1238), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1240), 1, - sym_preproc_directive, - ACTIONS(1242), 1, - aux_sym_preproc_if_token2, - STATE(707), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(771), 1, - sym__declaration_specifiers, - ACTIONS(1234), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1107), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(35), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(37), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(568), 4, - sym_attribute_specifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(33), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(723), 6, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(385), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [24588] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(25), 1, - anon_sym___attribute__, - ACTIONS(41), 1, - anon_sym_enum, - ACTIONS(43), 1, - anon_sym_struct, - ACTIONS(45), 1, - anon_sym_union, - ACTIONS(648), 1, - sym_primitive_type, - ACTIONS(1226), 1, - sym_identifier, - ACTIONS(1228), 1, - aux_sym_preproc_def_token1, - ACTIONS(1230), 1, - aux_sym_preproc_if_token1, - ACTIONS(1236), 1, - aux_sym_preproc_else_token1, - ACTIONS(1238), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1240), 1, - sym_preproc_directive, - ACTIONS(1244), 1, - aux_sym_preproc_if_token2, - STATE(707), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(771), 1, - sym__declaration_specifiers, - ACTIONS(1234), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1000), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(35), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(37), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(568), 4, - sym_attribute_specifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(33), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(723), 6, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(385), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [24685] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(25), 1, - anon_sym___attribute__, - ACTIONS(41), 1, - anon_sym_enum, - ACTIONS(43), 1, - anon_sym_struct, - ACTIONS(45), 1, - anon_sym_union, - ACTIONS(648), 1, - sym_primitive_type, - ACTIONS(1226), 1, - sym_identifier, - ACTIONS(1228), 1, - aux_sym_preproc_def_token1, - ACTIONS(1230), 1, - aux_sym_preproc_if_token1, - ACTIONS(1236), 1, - aux_sym_preproc_else_token1, - ACTIONS(1238), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1240), 1, - sym_preproc_directive, - ACTIONS(1246), 1, - aux_sym_preproc_if_token2, - STATE(707), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(771), 1, - sym__declaration_specifiers, - ACTIONS(1234), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1001), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(35), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(37), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(568), 4, - sym_attribute_specifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(33), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(723), 6, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(385), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [24782] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(25), 1, - anon_sym___attribute__, - ACTIONS(41), 1, - anon_sym_enum, - ACTIONS(43), 1, - anon_sym_struct, - ACTIONS(45), 1, - anon_sym_union, - ACTIONS(648), 1, - sym_primitive_type, - ACTIONS(1226), 1, - sym_identifier, - ACTIONS(1228), 1, - aux_sym_preproc_def_token1, - ACTIONS(1230), 1, - aux_sym_preproc_if_token1, - ACTIONS(1236), 1, - aux_sym_preproc_else_token1, - ACTIONS(1238), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1240), 1, - sym_preproc_directive, - ACTIONS(1248), 1, - aux_sym_preproc_if_token2, - STATE(707), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(771), 1, - sym__declaration_specifiers, - ACTIONS(1234), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1085), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(35), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(37), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(568), 4, - sym_attribute_specifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(33), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(723), 6, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(385), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [24879] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(25), 1, - anon_sym___attribute__, - ACTIONS(41), 1, - anon_sym_enum, - ACTIONS(43), 1, - anon_sym_struct, - ACTIONS(45), 1, - anon_sym_union, - ACTIONS(648), 1, - sym_primitive_type, - ACTIONS(1226), 1, - sym_identifier, - ACTIONS(1228), 1, - aux_sym_preproc_def_token1, - ACTIONS(1230), 1, - aux_sym_preproc_if_token1, - ACTIONS(1236), 1, - aux_sym_preproc_else_token1, - ACTIONS(1238), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1240), 1, - sym_preproc_directive, - ACTIONS(1250), 1, - aux_sym_preproc_if_token2, - STATE(707), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(771), 1, - sym__declaration_specifiers, - ACTIONS(1234), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1018), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(35), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(37), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(568), 4, - sym_attribute_specifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(33), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(723), 6, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(378), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [24976] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(25), 1, - anon_sym___attribute__, - ACTIONS(41), 1, - anon_sym_enum, - ACTIONS(43), 1, - anon_sym_struct, - ACTIONS(45), 1, - anon_sym_union, - ACTIONS(648), 1, - sym_primitive_type, - ACTIONS(1226), 1, - sym_identifier, - ACTIONS(1228), 1, - aux_sym_preproc_def_token1, - ACTIONS(1230), 1, - aux_sym_preproc_if_token1, - ACTIONS(1236), 1, - aux_sym_preproc_else_token1, - ACTIONS(1238), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1240), 1, - sym_preproc_directive, - ACTIONS(1252), 1, - aux_sym_preproc_if_token2, - STATE(707), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(771), 1, - sym__declaration_specifiers, - ACTIONS(1234), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1150), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(35), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(37), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(568), 4, - sym_attribute_specifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(33), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(723), 6, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(385), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [25073] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(25), 1, - anon_sym___attribute__, - ACTIONS(41), 1, - anon_sym_enum, - ACTIONS(43), 1, - anon_sym_struct, - ACTIONS(45), 1, - anon_sym_union, - ACTIONS(648), 1, - sym_primitive_type, - ACTIONS(1226), 1, - sym_identifier, - ACTIONS(1228), 1, - aux_sym_preproc_def_token1, - ACTIONS(1230), 1, - aux_sym_preproc_if_token1, - ACTIONS(1236), 1, - aux_sym_preproc_else_token1, - ACTIONS(1238), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1240), 1, - sym_preproc_directive, - ACTIONS(1254), 1, - aux_sym_preproc_if_token2, - STATE(707), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(771), 1, - sym__declaration_specifiers, - ACTIONS(1234), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1019), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(35), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(37), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(568), 4, - sym_attribute_specifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(33), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(723), 6, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(370), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [25170] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(25), 1, - anon_sym___attribute__, - ACTIONS(41), 1, - anon_sym_enum, - ACTIONS(43), 1, - anon_sym_struct, - ACTIONS(45), 1, - anon_sym_union, - ACTIONS(648), 1, - sym_primitive_type, - ACTIONS(1226), 1, - sym_identifier, - ACTIONS(1228), 1, - aux_sym_preproc_def_token1, - ACTIONS(1230), 1, - aux_sym_preproc_if_token1, - ACTIONS(1236), 1, - aux_sym_preproc_else_token1, - ACTIONS(1238), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1240), 1, - sym_preproc_directive, - ACTIONS(1256), 1, - aux_sym_preproc_if_token2, - STATE(707), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(771), 1, - sym__declaration_specifiers, - ACTIONS(1234), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1086), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(35), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(37), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(568), 4, - sym_attribute_specifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(33), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(723), 6, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(385), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [25267] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(25), 1, - anon_sym___attribute__, - ACTIONS(41), 1, - anon_sym_enum, - ACTIONS(43), 1, - anon_sym_struct, - ACTIONS(45), 1, - anon_sym_union, - ACTIONS(648), 1, - sym_primitive_type, - ACTIONS(1226), 1, - sym_identifier, - ACTIONS(1228), 1, - aux_sym_preproc_def_token1, - ACTIONS(1230), 1, - aux_sym_preproc_if_token1, - ACTIONS(1236), 1, - aux_sym_preproc_else_token1, - ACTIONS(1238), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1240), 1, - sym_preproc_directive, - ACTIONS(1258), 1, - aux_sym_preproc_if_token2, - STATE(707), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(771), 1, - sym__declaration_specifiers, - ACTIONS(1234), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1106), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(35), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(37), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(568), 4, - sym_attribute_specifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(33), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(723), 6, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(385), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [25364] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(25), 1, - anon_sym___attribute__, - ACTIONS(41), 1, - anon_sym_enum, - ACTIONS(43), 1, - anon_sym_struct, - ACTIONS(45), 1, - anon_sym_union, - ACTIONS(648), 1, - sym_primitive_type, - ACTIONS(1226), 1, - sym_identifier, - ACTIONS(1228), 1, - aux_sym_preproc_def_token1, - ACTIONS(1230), 1, - aux_sym_preproc_if_token1, - ACTIONS(1236), 1, - aux_sym_preproc_else_token1, - ACTIONS(1238), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1240), 1, - sym_preproc_directive, - ACTIONS(1260), 1, - aux_sym_preproc_if_token2, - STATE(707), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(771), 1, - sym__declaration_specifiers, - ACTIONS(1234), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1027), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(35), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(37), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(568), 4, - sym_attribute_specifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(33), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(723), 6, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(371), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [25461] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(25), 1, - anon_sym___attribute__, - ACTIONS(41), 1, - anon_sym_enum, - ACTIONS(43), 1, - anon_sym_struct, - ACTIONS(45), 1, - anon_sym_union, - ACTIONS(648), 1, - sym_primitive_type, - ACTIONS(1226), 1, - sym_identifier, - ACTIONS(1228), 1, - aux_sym_preproc_def_token1, - ACTIONS(1230), 1, - aux_sym_preproc_if_token1, - ACTIONS(1236), 1, - aux_sym_preproc_else_token1, - ACTIONS(1238), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1240), 1, - sym_preproc_directive, - ACTIONS(1262), 1, - aux_sym_preproc_if_token2, - STATE(707), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(771), 1, - sym__declaration_specifiers, - ACTIONS(1234), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1143), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(35), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(37), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(568), 4, - sym_attribute_specifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(33), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(723), 6, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(375), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [25558] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(25), 1, - anon_sym___attribute__, - ACTIONS(41), 1, - anon_sym_enum, - ACTIONS(43), 1, - anon_sym_struct, - ACTIONS(45), 1, - anon_sym_union, - ACTIONS(648), 1, - sym_primitive_type, - ACTIONS(1226), 1, - sym_identifier, - ACTIONS(1228), 1, - aux_sym_preproc_def_token1, - ACTIONS(1230), 1, - aux_sym_preproc_if_token1, - ACTIONS(1236), 1, - aux_sym_preproc_else_token1, - ACTIONS(1238), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1240), 1, - sym_preproc_directive, - ACTIONS(1264), 1, - aux_sym_preproc_if_token2, - STATE(707), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(771), 1, - sym__declaration_specifiers, - ACTIONS(1234), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1101), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(35), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(37), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(568), 4, - sym_attribute_specifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(33), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(723), 6, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(377), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [25655] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1205), 1, - anon_sym_LPAREN2, - ACTIONS(1209), 1, - anon_sym_STAR, - ACTIONS(1212), 1, - anon_sym_EQ, - ACTIONS(1216), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1198), 11, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - sym_identifier, - ACTIONS(1218), 11, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1200), 14, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [25722] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(25), 1, - anon_sym___attribute__, - ACTIONS(41), 1, - anon_sym_enum, - ACTIONS(43), 1, - anon_sym_struct, - ACTIONS(45), 1, - anon_sym_union, - ACTIONS(648), 1, - sym_primitive_type, - ACTIONS(1226), 1, - sym_identifier, - ACTIONS(1228), 1, - aux_sym_preproc_def_token1, - ACTIONS(1230), 1, - aux_sym_preproc_if_token1, - ACTIONS(1236), 1, - aux_sym_preproc_else_token1, - ACTIONS(1238), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1240), 1, - sym_preproc_directive, - ACTIONS(1266), 1, - aux_sym_preproc_if_token2, - STATE(707), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(771), 1, - sym__declaration_specifiers, - ACTIONS(1234), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1097), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(35), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(37), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(568), 4, - sym_attribute_specifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(33), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(723), 6, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(373), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [25819] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(25), 1, - anon_sym___attribute__, - ACTIONS(41), 1, - anon_sym_enum, - ACTIONS(43), 1, - anon_sym_struct, - ACTIONS(45), 1, - anon_sym_union, - ACTIONS(648), 1, - sym_primitive_type, - ACTIONS(1268), 1, - sym_identifier, - ACTIONS(1270), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1272), 1, - anon_sym_RPAREN, - ACTIONS(1274), 1, - anon_sym_LPAREN2, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1278), 1, - anon_sym_LBRACK, - STATE(707), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(756), 1, - sym__declaration_specifiers, - STATE(900), 1, - sym_parameter_list, - STATE(910), 1, - sym_parameter_declaration, - ACTIONS(35), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(37), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(568), 4, - sym_attribute_specifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(33), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(868), 5, - sym__abstract_declarator, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(869), 5, - sym__declarator, - sym_parenthesized_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - STATE(723), 6, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - [25915] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1280), 1, - sym_identifier, - ACTIONS(1283), 1, - aux_sym_preproc_def_token1, - ACTIONS(1286), 1, - aux_sym_preproc_if_token1, - ACTIONS(1294), 1, - sym_preproc_directive, - ACTIONS(1300), 1, - anon_sym___attribute__, - ACTIONS(1309), 1, - sym_primitive_type, - ACTIONS(1312), 1, - anon_sym_enum, - ACTIONS(1315), 1, - anon_sym_struct, - ACTIONS(1318), 1, - anon_sym_union, - STATE(707), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(771), 1, - sym__declaration_specifiers, - ACTIONS(1291), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(1289), 3, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - ACTIONS(1303), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(1306), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(568), 4, - sym_attribute_specifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(1297), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(723), 6, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(385), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [26004] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - STATE(389), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(1218), 13, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1200), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [26062] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1325), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - STATE(387), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(1323), 13, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1321), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [26120] = 22, + [68] = { + [sym_compound_statement] = STATE(257), + [sym_labeled_statement] = STATE(257), + [sym_expression_statement] = STATE(257), + [sym_if_statement] = STATE(257), + [sym_switch_statement] = STATE(257), + [sym_case_statement] = STATE(257), + [sym_while_statement] = STATE(257), + [sym_do_statement] = STATE(257), + [sym_for_statement] = STATE(257), + [sym_return_statement] = STATE(257), + [sym_break_statement] = STATE(257), + [sym_continue_statement] = STATE(257), + [sym_goto_statement] = STATE(257), + [sym__expression] = STATE(605), + [sym_comma_expression] = STATE(1011), + [sym_conditional_expression] = STATE(605), + [sym_assignment_expression] = STATE(605), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(605), + [sym_binary_expression] = STATE(605), + [sym_update_expression] = STATE(605), + [sym_cast_expression] = STATE(605), + [sym_sizeof_expression] = STATE(605), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(605), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(605), + [sym_concatenated_string] = STATE(605), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(600), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(610), + [anon_sym_switch] = ACTIONS(612), + [anon_sym_case] = ACTIONS(614), + [anon_sym_default] = ACTIONS(616), + [anon_sym_while] = ACTIONS(618), + [anon_sym_do] = ACTIONS(620), + [anon_sym_for] = ACTIONS(622), + [anon_sym_return] = ACTIONS(624), + [anon_sym_break] = ACTIONS(626), + [anon_sym_continue] = ACTIONS(628), + [anon_sym_goto] = ACTIONS(630), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(632), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(634), + [sym_false] = ACTIONS(634), + [sym_null] = ACTIONS(634), + [sym_comment] = ACTIONS(3), + }, + [69] = { + [sym_compound_statement] = STATE(158), + [sym_labeled_statement] = STATE(158), + [sym_expression_statement] = STATE(158), + [sym_if_statement] = STATE(158), + [sym_switch_statement] = STATE(158), + [sym_case_statement] = STATE(158), + [sym_while_statement] = STATE(158), + [sym_do_statement] = STATE(158), + [sym_for_statement] = STATE(158), + [sym_return_statement] = STATE(158), + [sym_break_statement] = STATE(158), + [sym_continue_statement] = STATE(158), + [sym_goto_statement] = STATE(158), + [sym__expression] = STATE(575), + [sym_comma_expression] = STATE(1080), + [sym_conditional_expression] = STATE(575), + [sym_assignment_expression] = STATE(575), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(575), + [sym_binary_expression] = STATE(575), + [sym_update_expression] = STATE(575), + [sym_cast_expression] = STATE(575), + [sym_sizeof_expression] = STATE(575), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(952), + [anon_sym_SEMI] = ACTIONS(103), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(115), + [anon_sym_case] = ACTIONS(117), + [anon_sym_default] = ACTIONS(119), + [anon_sym_while] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_break] = ACTIONS(129), + [anon_sym_continue] = ACTIONS(131), + [anon_sym_goto] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(135), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(137), + [sym_false] = ACTIONS(137), + [sym_null] = ACTIONS(137), + [sym_comment] = ACTIONS(3), + }, + [70] = { + [sym_compound_statement] = STATE(1145), + [sym_labeled_statement] = STATE(1145), + [sym_expression_statement] = STATE(1145), + [sym_if_statement] = STATE(1145), + [sym_switch_statement] = STATE(1145), + [sym_case_statement] = STATE(1145), + [sym_while_statement] = STATE(1145), + [sym_do_statement] = STATE(1145), + [sym_for_statement] = STATE(1145), + [sym_return_statement] = STATE(1145), + [sym_break_statement] = STATE(1145), + [sym_continue_statement] = STATE(1145), + [sym_goto_statement] = STATE(1145), + [sym__expression] = STATE(594), + [sym_comma_expression] = STATE(1051), + [sym_conditional_expression] = STATE(594), + [sym_assignment_expression] = STATE(594), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(594), + [sym_binary_expression] = STATE(594), + [sym_update_expression] = STATE(594), + [sym_cast_expression] = STATE(594), + [sym_sizeof_expression] = STATE(594), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(594), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(594), + [sym_concatenated_string] = STATE(594), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(47), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_case] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_do] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_break] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_goto] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(77), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + }, + [71] = { + [sym_compound_statement] = STATE(206), + [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(594), + [sym_comma_expression] = STATE(1051), + [sym_conditional_expression] = STATE(594), + [sym_assignment_expression] = STATE(594), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(594), + [sym_binary_expression] = STATE(594), + [sym_update_expression] = STATE(594), + [sym_cast_expression] = STATE(594), + [sym_sizeof_expression] = STATE(594), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(594), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(594), + [sym_concatenated_string] = STATE(594), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(47), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_case] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_do] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_break] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_goto] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(77), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + }, + [72] = { + [sym_compound_statement] = STATE(154), + [sym_labeled_statement] = STATE(154), + [sym_expression_statement] = STATE(154), + [sym_if_statement] = STATE(154), + [sym_switch_statement] = STATE(154), + [sym_case_statement] = STATE(154), + [sym_while_statement] = STATE(154), + [sym_do_statement] = STATE(154), + [sym_for_statement] = STATE(154), + [sym_return_statement] = STATE(154), + [sym_break_statement] = STATE(154), + [sym_continue_statement] = STATE(154), + [sym_goto_statement] = STATE(154), + [sym__expression] = STATE(575), + [sym_comma_expression] = STATE(1080), + [sym_conditional_expression] = STATE(575), + [sym_assignment_expression] = STATE(575), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(575), + [sym_binary_expression] = STATE(575), + [sym_update_expression] = STATE(575), + [sym_cast_expression] = STATE(575), + [sym_sizeof_expression] = STATE(575), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(952), + [anon_sym_SEMI] = ACTIONS(103), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(115), + [anon_sym_case] = ACTIONS(117), + [anon_sym_default] = ACTIONS(119), + [anon_sym_while] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_break] = ACTIONS(129), + [anon_sym_continue] = ACTIONS(131), + [anon_sym_goto] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(135), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(137), + [sym_false] = ACTIONS(137), + [sym_null] = ACTIONS(137), + [sym_comment] = ACTIONS(3), + }, + [73] = { + [sym_compound_statement] = STATE(205), + [sym_labeled_statement] = STATE(205), + [sym_expression_statement] = STATE(205), + [sym_if_statement] = STATE(205), + [sym_switch_statement] = STATE(205), + [sym_case_statement] = STATE(205), + [sym_while_statement] = STATE(205), + [sym_do_statement] = STATE(205), + [sym_for_statement] = STATE(205), + [sym_return_statement] = STATE(205), + [sym_break_statement] = STATE(205), + [sym_continue_statement] = STATE(205), + [sym_goto_statement] = STATE(205), + [sym__expression] = STATE(594), + [sym_comma_expression] = STATE(1051), + [sym_conditional_expression] = STATE(594), + [sym_assignment_expression] = STATE(594), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(594), + [sym_binary_expression] = STATE(594), + [sym_update_expression] = STATE(594), + [sym_cast_expression] = STATE(594), + [sym_sizeof_expression] = STATE(594), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(594), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(594), + [sym_concatenated_string] = STATE(594), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(47), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_case] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_do] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_break] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_goto] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(77), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + }, + [74] = { + [sym_compound_statement] = STATE(292), + [sym_labeled_statement] = STATE(292), + [sym_expression_statement] = STATE(292), + [sym_if_statement] = STATE(292), + [sym_switch_statement] = STATE(292), + [sym_case_statement] = STATE(292), + [sym_while_statement] = STATE(292), + [sym_do_statement] = STATE(292), + [sym_for_statement] = STATE(292), + [sym_return_statement] = STATE(292), + [sym_break_statement] = STATE(292), + [sym_continue_statement] = STATE(292), + [sym_goto_statement] = STATE(292), + [sym__expression] = STATE(605), + [sym_comma_expression] = STATE(1011), + [sym_conditional_expression] = STATE(605), + [sym_assignment_expression] = STATE(605), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(605), + [sym_binary_expression] = STATE(605), + [sym_update_expression] = STATE(605), + [sym_cast_expression] = STATE(605), + [sym_sizeof_expression] = STATE(605), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(605), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(605), + [sym_concatenated_string] = STATE(605), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(600), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(610), + [anon_sym_switch] = ACTIONS(612), + [anon_sym_case] = ACTIONS(614), + [anon_sym_default] = ACTIONS(616), + [anon_sym_while] = ACTIONS(618), + [anon_sym_do] = ACTIONS(620), + [anon_sym_for] = ACTIONS(622), + [anon_sym_return] = ACTIONS(624), + [anon_sym_break] = ACTIONS(626), + [anon_sym_continue] = ACTIONS(628), + [anon_sym_goto] = ACTIONS(630), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(632), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(634), + [sym_false] = ACTIONS(634), + [sym_null] = ACTIONS(634), + [sym_comment] = ACTIONS(3), + }, + [75] = { + [sym_compound_statement] = STATE(198), + [sym_labeled_statement] = STATE(198), + [sym_expression_statement] = STATE(198), + [sym_if_statement] = STATE(198), + [sym_switch_statement] = STATE(198), + [sym_case_statement] = STATE(198), + [sym_while_statement] = STATE(198), + [sym_do_statement] = STATE(198), + [sym_for_statement] = STATE(198), + [sym_return_statement] = STATE(198), + [sym_break_statement] = STATE(198), + [sym_continue_statement] = STATE(198), + [sym_goto_statement] = STATE(198), + [sym__expression] = STATE(594), + [sym_comma_expression] = STATE(1051), + [sym_conditional_expression] = STATE(594), + [sym_assignment_expression] = STATE(594), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(594), + [sym_binary_expression] = STATE(594), + [sym_update_expression] = STATE(594), + [sym_cast_expression] = STATE(594), + [sym_sizeof_expression] = STATE(594), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(594), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(594), + [sym_concatenated_string] = STATE(594), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(47), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_case] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_do] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_break] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_goto] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(77), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + }, + [76] = { + [sym_compound_statement] = STATE(291), + [sym_labeled_statement] = STATE(291), + [sym_expression_statement] = STATE(291), + [sym_if_statement] = STATE(291), + [sym_switch_statement] = STATE(291), + [sym_case_statement] = STATE(291), + [sym_while_statement] = STATE(291), + [sym_do_statement] = STATE(291), + [sym_for_statement] = STATE(291), + [sym_return_statement] = STATE(291), + [sym_break_statement] = STATE(291), + [sym_continue_statement] = STATE(291), + [sym_goto_statement] = STATE(291), + [sym__expression] = STATE(605), + [sym_comma_expression] = STATE(1011), + [sym_conditional_expression] = STATE(605), + [sym_assignment_expression] = STATE(605), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(605), + [sym_binary_expression] = STATE(605), + [sym_update_expression] = STATE(605), + [sym_cast_expression] = STATE(605), + [sym_sizeof_expression] = STATE(605), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(605), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(605), + [sym_concatenated_string] = STATE(605), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(600), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(610), + [anon_sym_switch] = ACTIONS(612), + [anon_sym_case] = ACTIONS(614), + [anon_sym_default] = ACTIONS(616), + [anon_sym_while] = ACTIONS(618), + [anon_sym_do] = ACTIONS(620), + [anon_sym_for] = ACTIONS(622), + [anon_sym_return] = ACTIONS(624), + [anon_sym_break] = ACTIONS(626), + [anon_sym_continue] = ACTIONS(628), + [anon_sym_goto] = ACTIONS(630), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(632), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(634), + [sym_false] = ACTIONS(634), + [sym_null] = ACTIONS(634), + [sym_comment] = ACTIONS(3), + }, + [77] = { + [sym_compound_statement] = STATE(280), + [sym_labeled_statement] = STATE(280), + [sym_expression_statement] = STATE(280), + [sym_if_statement] = STATE(280), + [sym_switch_statement] = STATE(280), + [sym_case_statement] = STATE(280), + [sym_while_statement] = STATE(280), + [sym_do_statement] = STATE(280), + [sym_for_statement] = STATE(280), + [sym_return_statement] = STATE(280), + [sym_break_statement] = STATE(280), + [sym_continue_statement] = STATE(280), + [sym_goto_statement] = STATE(280), + [sym__expression] = STATE(605), + [sym_comma_expression] = STATE(1011), + [sym_conditional_expression] = STATE(605), + [sym_assignment_expression] = STATE(605), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(605), + [sym_binary_expression] = STATE(605), + [sym_update_expression] = STATE(605), + [sym_cast_expression] = STATE(605), + [sym_sizeof_expression] = STATE(605), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(605), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(605), + [sym_concatenated_string] = STATE(605), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(600), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(610), + [anon_sym_switch] = ACTIONS(612), + [anon_sym_case] = ACTIONS(614), + [anon_sym_default] = ACTIONS(616), + [anon_sym_while] = ACTIONS(618), + [anon_sym_do] = ACTIONS(620), + [anon_sym_for] = ACTIONS(622), + [anon_sym_return] = ACTIONS(624), + [anon_sym_break] = ACTIONS(626), + [anon_sym_continue] = ACTIONS(628), + [anon_sym_goto] = ACTIONS(630), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(632), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(634), + [sym_false] = ACTIONS(634), + [sym_null] = ACTIONS(634), + [sym_comment] = ACTIONS(3), + }, + [78] = { + [sym_compound_statement] = STATE(279), + [sym_labeled_statement] = STATE(279), + [sym_expression_statement] = STATE(279), + [sym_if_statement] = STATE(279), + [sym_switch_statement] = STATE(279), + [sym_case_statement] = STATE(279), + [sym_while_statement] = STATE(279), + [sym_do_statement] = STATE(279), + [sym_for_statement] = STATE(279), + [sym_return_statement] = STATE(279), + [sym_break_statement] = STATE(279), + [sym_continue_statement] = STATE(279), + [sym_goto_statement] = STATE(279), + [sym__expression] = STATE(605), + [sym_comma_expression] = STATE(1011), + [sym_conditional_expression] = STATE(605), + [sym_assignment_expression] = STATE(605), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(605), + [sym_binary_expression] = STATE(605), + [sym_update_expression] = STATE(605), + [sym_cast_expression] = STATE(605), + [sym_sizeof_expression] = STATE(605), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(605), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(605), + [sym_concatenated_string] = STATE(605), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(600), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(610), + [anon_sym_switch] = ACTIONS(612), + [anon_sym_case] = ACTIONS(614), + [anon_sym_default] = ACTIONS(616), + [anon_sym_while] = ACTIONS(618), + [anon_sym_do] = ACTIONS(620), + [anon_sym_for] = ACTIONS(622), + [anon_sym_return] = ACTIONS(624), + [anon_sym_break] = ACTIONS(626), + [anon_sym_continue] = ACTIONS(628), + [anon_sym_goto] = ACTIONS(630), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(632), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(634), + [sym_false] = ACTIONS(634), + [sym_null] = ACTIONS(634), + [sym_comment] = ACTIONS(3), + }, + [79] = { + [sym_compound_statement] = STATE(260), + [sym_labeled_statement] = STATE(260), + [sym_expression_statement] = STATE(260), + [sym_if_statement] = STATE(260), + [sym_switch_statement] = STATE(260), + [sym_case_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_do_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_return_statement] = STATE(260), + [sym_break_statement] = STATE(260), + [sym_continue_statement] = STATE(260), + [sym_goto_statement] = STATE(260), + [sym__expression] = STATE(615), + [sym_comma_expression] = STATE(1128), + [sym_conditional_expression] = STATE(615), + [sym_assignment_expression] = STATE(615), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(615), + [sym_binary_expression] = STATE(615), + [sym_update_expression] = STATE(615), + [sym_cast_expression] = STATE(615), + [sym_sizeof_expression] = STATE(615), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(615), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(615), + [sym_concatenated_string] = STATE(615), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(304), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(316), + [anon_sym_switch] = ACTIONS(318), + [anon_sym_case] = ACTIONS(320), + [anon_sym_default] = ACTIONS(322), + [anon_sym_while] = ACTIONS(324), + [anon_sym_do] = ACTIONS(326), + [anon_sym_for] = ACTIONS(328), + [anon_sym_return] = ACTIONS(330), + [anon_sym_break] = ACTIONS(332), + [anon_sym_continue] = ACTIONS(334), + [anon_sym_goto] = ACTIONS(336), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(338), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(340), + [sym_false] = ACTIONS(340), + [sym_null] = ACTIONS(340), + [sym_comment] = ACTIONS(3), + }, + [80] = { + [sym_compound_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_switch_statement] = STATE(197), + [sym_case_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_goto_statement] = STATE(197), + [sym__expression] = STATE(594), + [sym_comma_expression] = STATE(1051), + [sym_conditional_expression] = STATE(594), + [sym_assignment_expression] = STATE(594), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(594), + [sym_binary_expression] = STATE(594), + [sym_update_expression] = STATE(594), + [sym_cast_expression] = STATE(594), + [sym_sizeof_expression] = STATE(594), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(594), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(594), + [sym_concatenated_string] = STATE(594), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(47), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_case] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_do] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_break] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_goto] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(77), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + }, + [81] = { + [sym_compound_statement] = STATE(214), + [sym_labeled_statement] = STATE(214), + [sym_expression_statement] = STATE(214), + [sym_if_statement] = STATE(214), + [sym_switch_statement] = STATE(214), + [sym_case_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_do_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_return_statement] = STATE(214), + [sym_break_statement] = STATE(214), + [sym_continue_statement] = STATE(214), + [sym_goto_statement] = STATE(214), + [sym__expression] = STATE(594), + [sym_comma_expression] = STATE(1051), + [sym_conditional_expression] = STATE(594), + [sym_assignment_expression] = STATE(594), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(594), + [sym_binary_expression] = STATE(594), + [sym_update_expression] = STATE(594), + [sym_cast_expression] = STATE(594), + [sym_sizeof_expression] = STATE(594), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(594), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(594), + [sym_concatenated_string] = STATE(594), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(47), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_case] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_do] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_break] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_goto] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(77), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + }, + [82] = { + [sym_compound_statement] = STATE(162), + [sym_labeled_statement] = STATE(162), + [sym_expression_statement] = STATE(162), + [sym_if_statement] = STATE(162), + [sym_switch_statement] = STATE(162), + [sym_case_statement] = STATE(162), + [sym_while_statement] = STATE(162), + [sym_do_statement] = STATE(162), + [sym_for_statement] = STATE(162), + [sym_return_statement] = STATE(162), + [sym_break_statement] = STATE(162), + [sym_continue_statement] = STATE(162), + [sym_goto_statement] = STATE(162), + [sym__expression] = STATE(575), + [sym_comma_expression] = STATE(1080), + [sym_conditional_expression] = STATE(575), + [sym_assignment_expression] = STATE(575), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(575), + [sym_binary_expression] = STATE(575), + [sym_update_expression] = STATE(575), + [sym_cast_expression] = STATE(575), + [sym_sizeof_expression] = STATE(575), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(952), + [anon_sym_SEMI] = ACTIONS(103), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(115), + [anon_sym_case] = ACTIONS(117), + [anon_sym_default] = ACTIONS(119), + [anon_sym_while] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_break] = ACTIONS(129), + [anon_sym_continue] = ACTIONS(131), + [anon_sym_goto] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(135), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(137), + [sym_false] = ACTIONS(137), + [sym_null] = ACTIONS(137), + [sym_comment] = ACTIONS(3), + }, + [83] = { + [sym_compound_statement] = STATE(144), + [sym_labeled_statement] = STATE(144), + [sym_expression_statement] = STATE(144), + [sym_if_statement] = STATE(144), + [sym_switch_statement] = STATE(144), + [sym_case_statement] = STATE(144), + [sym_while_statement] = STATE(144), + [sym_do_statement] = STATE(144), + [sym_for_statement] = STATE(144), + [sym_return_statement] = STATE(144), + [sym_break_statement] = STATE(144), + [sym_continue_statement] = STATE(144), + [sym_goto_statement] = STATE(144), + [sym__expression] = STATE(575), + [sym_comma_expression] = STATE(1080), + [sym_conditional_expression] = STATE(575), + [sym_assignment_expression] = STATE(575), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(575), + [sym_binary_expression] = STATE(575), + [sym_update_expression] = STATE(575), + [sym_cast_expression] = STATE(575), + [sym_sizeof_expression] = STATE(575), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(952), + [anon_sym_SEMI] = ACTIONS(103), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(115), + [anon_sym_case] = ACTIONS(117), + [anon_sym_default] = ACTIONS(119), + [anon_sym_while] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_break] = ACTIONS(129), + [anon_sym_continue] = ACTIONS(131), + [anon_sym_goto] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(135), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(137), + [sym_false] = ACTIONS(137), + [sym_null] = ACTIONS(137), + [sym_comment] = ACTIONS(3), + }, + [84] = { + [sym_compound_statement] = STATE(249), + [sym_labeled_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_case_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_goto_statement] = STATE(249), + [sym__expression] = STATE(594), + [sym_comma_expression] = STATE(1051), + [sym_conditional_expression] = STATE(594), + [sym_assignment_expression] = STATE(594), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(594), + [sym_binary_expression] = STATE(594), + [sym_update_expression] = STATE(594), + [sym_cast_expression] = STATE(594), + [sym_sizeof_expression] = STATE(594), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(594), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(594), + [sym_concatenated_string] = STATE(594), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(47), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_case] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_do] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_break] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_goto] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(77), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + }, + [85] = { + [sym_compound_statement] = STATE(200), + [sym_labeled_statement] = STATE(200), + [sym_expression_statement] = STATE(200), + [sym_if_statement] = STATE(200), + [sym_switch_statement] = STATE(200), + [sym_case_statement] = STATE(200), + [sym_while_statement] = STATE(200), + [sym_do_statement] = STATE(200), + [sym_for_statement] = STATE(200), + [sym_return_statement] = STATE(200), + [sym_break_statement] = STATE(200), + [sym_continue_statement] = STATE(200), + [sym_goto_statement] = STATE(200), + [sym__expression] = STATE(594), + [sym_comma_expression] = STATE(1051), + [sym_conditional_expression] = STATE(594), + [sym_assignment_expression] = STATE(594), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(594), + [sym_binary_expression] = STATE(594), + [sym_update_expression] = STATE(594), + [sym_cast_expression] = STATE(594), + [sym_sizeof_expression] = STATE(594), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(594), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(594), + [sym_concatenated_string] = STATE(594), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(47), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_case] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_do] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_break] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_goto] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(77), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + }, + [86] = { + [sym_compound_statement] = STATE(142), + [sym_labeled_statement] = STATE(142), + [sym_expression_statement] = STATE(142), + [sym_if_statement] = STATE(142), + [sym_switch_statement] = STATE(142), + [sym_case_statement] = STATE(142), + [sym_while_statement] = STATE(142), + [sym_do_statement] = STATE(142), + [sym_for_statement] = STATE(142), + [sym_return_statement] = STATE(142), + [sym_break_statement] = STATE(142), + [sym_continue_statement] = STATE(142), + [sym_goto_statement] = STATE(142), + [sym__expression] = STATE(575), + [sym_comma_expression] = STATE(1080), + [sym_conditional_expression] = STATE(575), + [sym_assignment_expression] = STATE(575), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(575), + [sym_binary_expression] = STATE(575), + [sym_update_expression] = STATE(575), + [sym_cast_expression] = STATE(575), + [sym_sizeof_expression] = STATE(575), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(952), + [anon_sym_SEMI] = ACTIONS(103), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(115), + [anon_sym_case] = ACTIONS(117), + [anon_sym_default] = ACTIONS(119), + [anon_sym_while] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_break] = ACTIONS(129), + [anon_sym_continue] = ACTIONS(131), + [anon_sym_goto] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(135), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(137), + [sym_false] = ACTIONS(137), + [sym_null] = ACTIONS(137), + [sym_comment] = ACTIONS(3), + }, + [87] = { + [sym_compound_statement] = STATE(276), + [sym_labeled_statement] = STATE(276), + [sym_expression_statement] = STATE(276), + [sym_if_statement] = STATE(276), + [sym_switch_statement] = STATE(276), + [sym_case_statement] = STATE(276), + [sym_while_statement] = STATE(276), + [sym_do_statement] = STATE(276), + [sym_for_statement] = STATE(276), + [sym_return_statement] = STATE(276), + [sym_break_statement] = STATE(276), + [sym_continue_statement] = STATE(276), + [sym_goto_statement] = STATE(276), + [sym__expression] = STATE(605), + [sym_comma_expression] = STATE(1011), + [sym_conditional_expression] = STATE(605), + [sym_assignment_expression] = STATE(605), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(605), + [sym_binary_expression] = STATE(605), + [sym_update_expression] = STATE(605), + [sym_cast_expression] = STATE(605), + [sym_sizeof_expression] = STATE(605), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(605), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(605), + [sym_concatenated_string] = STATE(605), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(600), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(610), + [anon_sym_switch] = ACTIONS(612), + [anon_sym_case] = ACTIONS(614), + [anon_sym_default] = ACTIONS(616), + [anon_sym_while] = ACTIONS(618), + [anon_sym_do] = ACTIONS(620), + [anon_sym_for] = ACTIONS(622), + [anon_sym_return] = ACTIONS(624), + [anon_sym_break] = ACTIONS(626), + [anon_sym_continue] = ACTIONS(628), + [anon_sym_goto] = ACTIONS(630), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(632), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(634), + [sym_false] = ACTIONS(634), + [sym_null] = ACTIONS(634), + [sym_comment] = ACTIONS(3), + }, + [88] = { + [sym_compound_statement] = STATE(275), + [sym_labeled_statement] = STATE(275), + [sym_expression_statement] = STATE(275), + [sym_if_statement] = STATE(275), + [sym_switch_statement] = STATE(275), + [sym_case_statement] = STATE(275), + [sym_while_statement] = STATE(275), + [sym_do_statement] = STATE(275), + [sym_for_statement] = STATE(275), + [sym_return_statement] = STATE(275), + [sym_break_statement] = STATE(275), + [sym_continue_statement] = STATE(275), + [sym_goto_statement] = STATE(275), + [sym__expression] = STATE(605), + [sym_comma_expression] = STATE(1011), + [sym_conditional_expression] = STATE(605), + [sym_assignment_expression] = STATE(605), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(605), + [sym_binary_expression] = STATE(605), + [sym_update_expression] = STATE(605), + [sym_cast_expression] = STATE(605), + [sym_sizeof_expression] = STATE(605), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(605), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(605), + [sym_concatenated_string] = STATE(605), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(600), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(610), + [anon_sym_switch] = ACTIONS(612), + [anon_sym_case] = ACTIONS(614), + [anon_sym_default] = ACTIONS(616), + [anon_sym_while] = ACTIONS(618), + [anon_sym_do] = ACTIONS(620), + [anon_sym_for] = ACTIONS(622), + [anon_sym_return] = ACTIONS(624), + [anon_sym_break] = ACTIONS(626), + [anon_sym_continue] = ACTIONS(628), + [anon_sym_goto] = ACTIONS(630), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(632), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(634), + [sym_false] = ACTIONS(634), + [sym_null] = ACTIONS(634), + [sym_comment] = ACTIONS(3), + }, + [89] = { + [sym_compound_statement] = STATE(232), + [sym_labeled_statement] = STATE(232), + [sym_expression_statement] = STATE(232), + [sym_if_statement] = STATE(232), + [sym_switch_statement] = STATE(232), + [sym_case_statement] = STATE(232), + [sym_while_statement] = STATE(232), + [sym_do_statement] = STATE(232), + [sym_for_statement] = STATE(232), + [sym_return_statement] = STATE(232), + [sym_break_statement] = STATE(232), + [sym_continue_statement] = STATE(232), + [sym_goto_statement] = STATE(232), + [sym__expression] = STATE(594), + [sym_comma_expression] = STATE(1051), + [sym_conditional_expression] = STATE(594), + [sym_assignment_expression] = STATE(594), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(594), + [sym_binary_expression] = STATE(594), + [sym_update_expression] = STATE(594), + [sym_cast_expression] = STATE(594), + [sym_sizeof_expression] = STATE(594), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(594), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(594), + [sym_concatenated_string] = STATE(594), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(47), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_case] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_do] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_break] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_goto] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(77), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + }, + [90] = { + [sym_compound_statement] = STATE(1139), + [sym_labeled_statement] = STATE(1139), + [sym_expression_statement] = STATE(1139), + [sym_if_statement] = STATE(1139), + [sym_switch_statement] = STATE(1139), + [sym_case_statement] = STATE(1139), + [sym_while_statement] = STATE(1139), + [sym_do_statement] = STATE(1139), + [sym_for_statement] = STATE(1139), + [sym_return_statement] = STATE(1139), + [sym_break_statement] = STATE(1139), + [sym_continue_statement] = STATE(1139), + [sym_goto_statement] = STATE(1139), + [sym__expression] = STATE(594), + [sym_comma_expression] = STATE(1051), + [sym_conditional_expression] = STATE(594), + [sym_assignment_expression] = STATE(594), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(594), + [sym_binary_expression] = STATE(594), + [sym_update_expression] = STATE(594), + [sym_cast_expression] = STATE(594), + [sym_sizeof_expression] = STATE(594), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(594), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(594), + [sym_concatenated_string] = STATE(594), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(47), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_case] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_do] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_break] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_goto] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(77), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + }, + [91] = { + [sym_compound_statement] = STATE(271), + [sym_labeled_statement] = STATE(271), + [sym_expression_statement] = STATE(271), + [sym_if_statement] = STATE(271), + [sym_switch_statement] = STATE(271), + [sym_case_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_do_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_return_statement] = STATE(271), + [sym_break_statement] = STATE(271), + [sym_continue_statement] = STATE(271), + [sym_goto_statement] = STATE(271), + [sym__expression] = STATE(605), + [sym_comma_expression] = STATE(1011), + [sym_conditional_expression] = STATE(605), + [sym_assignment_expression] = STATE(605), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(605), + [sym_binary_expression] = STATE(605), + [sym_update_expression] = STATE(605), + [sym_cast_expression] = STATE(605), + [sym_sizeof_expression] = STATE(605), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(605), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(605), + [sym_concatenated_string] = STATE(605), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(600), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(610), + [anon_sym_switch] = ACTIONS(612), + [anon_sym_case] = ACTIONS(614), + [anon_sym_default] = ACTIONS(616), + [anon_sym_while] = ACTIONS(618), + [anon_sym_do] = ACTIONS(620), + [anon_sym_for] = ACTIONS(622), + [anon_sym_return] = ACTIONS(624), + [anon_sym_break] = ACTIONS(626), + [anon_sym_continue] = ACTIONS(628), + [anon_sym_goto] = ACTIONS(630), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(632), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(634), + [sym_false] = ACTIONS(634), + [sym_null] = ACTIONS(634), + [sym_comment] = ACTIONS(3), + }, + [92] = { + [sym_compound_statement] = STATE(267), + [sym_labeled_statement] = STATE(267), + [sym_expression_statement] = STATE(267), + [sym_if_statement] = STATE(267), + [sym_switch_statement] = STATE(267), + [sym_case_statement] = STATE(267), + [sym_while_statement] = STATE(267), + [sym_do_statement] = STATE(267), + [sym_for_statement] = STATE(267), + [sym_return_statement] = STATE(267), + [sym_break_statement] = STATE(267), + [sym_continue_statement] = STATE(267), + [sym_goto_statement] = STATE(267), + [sym__expression] = STATE(605), + [sym_comma_expression] = STATE(1011), + [sym_conditional_expression] = STATE(605), + [sym_assignment_expression] = STATE(605), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(605), + [sym_binary_expression] = STATE(605), + [sym_update_expression] = STATE(605), + [sym_cast_expression] = STATE(605), + [sym_sizeof_expression] = STATE(605), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(605), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(605), + [sym_concatenated_string] = STATE(605), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(600), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(610), + [anon_sym_switch] = ACTIONS(612), + [anon_sym_case] = ACTIONS(614), + [anon_sym_default] = ACTIONS(616), + [anon_sym_while] = ACTIONS(618), + [anon_sym_do] = ACTIONS(620), + [anon_sym_for] = ACTIONS(622), + [anon_sym_return] = ACTIONS(624), + [anon_sym_break] = ACTIONS(626), + [anon_sym_continue] = ACTIONS(628), + [anon_sym_goto] = ACTIONS(630), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(632), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(634), + [sym_false] = ACTIONS(634), + [sym_null] = ACTIONS(634), + [sym_comment] = ACTIONS(3), + }, + [93] = { + [sym_compound_statement] = STATE(150), + [sym_labeled_statement] = STATE(150), + [sym_expression_statement] = STATE(150), + [sym_if_statement] = STATE(150), + [sym_switch_statement] = STATE(150), + [sym_case_statement] = STATE(150), + [sym_while_statement] = STATE(150), + [sym_do_statement] = STATE(150), + [sym_for_statement] = STATE(150), + [sym_return_statement] = STATE(150), + [sym_break_statement] = STATE(150), + [sym_continue_statement] = STATE(150), + [sym_goto_statement] = STATE(150), + [sym__expression] = STATE(575), + [sym_comma_expression] = STATE(1080), + [sym_conditional_expression] = STATE(575), + [sym_assignment_expression] = STATE(575), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(575), + [sym_binary_expression] = STATE(575), + [sym_update_expression] = STATE(575), + [sym_cast_expression] = STATE(575), + [sym_sizeof_expression] = STATE(575), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(952), + [anon_sym_SEMI] = ACTIONS(103), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(115), + [anon_sym_case] = ACTIONS(117), + [anon_sym_default] = ACTIONS(119), + [anon_sym_while] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_break] = ACTIONS(129), + [anon_sym_continue] = ACTIONS(131), + [anon_sym_goto] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(135), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(137), + [sym_false] = ACTIONS(137), + [sym_null] = ACTIONS(137), + [sym_comment] = ACTIONS(3), + }, + [94] = { + [sym_compound_statement] = STATE(266), + [sym_labeled_statement] = STATE(266), + [sym_expression_statement] = STATE(266), + [sym_if_statement] = STATE(266), + [sym_switch_statement] = STATE(266), + [sym_case_statement] = STATE(266), + [sym_while_statement] = STATE(266), + [sym_do_statement] = STATE(266), + [sym_for_statement] = STATE(266), + [sym_return_statement] = STATE(266), + [sym_break_statement] = STATE(266), + [sym_continue_statement] = STATE(266), + [sym_goto_statement] = STATE(266), + [sym__expression] = STATE(605), + [sym_comma_expression] = STATE(1011), + [sym_conditional_expression] = STATE(605), + [sym_assignment_expression] = STATE(605), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(605), + [sym_binary_expression] = STATE(605), + [sym_update_expression] = STATE(605), + [sym_cast_expression] = STATE(605), + [sym_sizeof_expression] = STATE(605), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(605), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(605), + [sym_concatenated_string] = STATE(605), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(600), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(610), + [anon_sym_switch] = ACTIONS(612), + [anon_sym_case] = ACTIONS(614), + [anon_sym_default] = ACTIONS(616), + [anon_sym_while] = ACTIONS(618), + [anon_sym_do] = ACTIONS(620), + [anon_sym_for] = ACTIONS(622), + [anon_sym_return] = ACTIONS(624), + [anon_sym_break] = ACTIONS(626), + [anon_sym_continue] = ACTIONS(628), + [anon_sym_goto] = ACTIONS(630), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(632), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(634), + [sym_false] = ACTIONS(634), + [sym_null] = ACTIONS(634), + [sym_comment] = ACTIONS(3), + }, + [95] = { + [sym_compound_statement] = STATE(137), + [sym_labeled_statement] = STATE(137), + [sym_expression_statement] = STATE(137), + [sym_if_statement] = STATE(137), + [sym_switch_statement] = STATE(137), + [sym_case_statement] = STATE(137), + [sym_while_statement] = STATE(137), + [sym_do_statement] = STATE(137), + [sym_for_statement] = STATE(137), + [sym_return_statement] = STATE(137), + [sym_break_statement] = STATE(137), + [sym_continue_statement] = STATE(137), + [sym_goto_statement] = STATE(137), + [sym__expression] = STATE(575), + [sym_comma_expression] = STATE(1080), + [sym_conditional_expression] = STATE(575), + [sym_assignment_expression] = STATE(575), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(575), + [sym_binary_expression] = STATE(575), + [sym_update_expression] = STATE(575), + [sym_cast_expression] = STATE(575), + [sym_sizeof_expression] = STATE(575), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(952), + [anon_sym_SEMI] = ACTIONS(103), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(115), + [anon_sym_case] = ACTIONS(117), + [anon_sym_default] = ACTIONS(119), + [anon_sym_while] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_break] = ACTIONS(129), + [anon_sym_continue] = ACTIONS(131), + [anon_sym_goto] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(135), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(137), + [sym_false] = ACTIONS(137), + [sym_null] = ACTIONS(137), + [sym_comment] = ACTIONS(3), + }, + [96] = { + [sym_compound_statement] = STATE(262), + [sym_labeled_statement] = STATE(262), + [sym_expression_statement] = STATE(262), + [sym_if_statement] = STATE(262), + [sym_switch_statement] = STATE(262), + [sym_case_statement] = STATE(262), + [sym_while_statement] = STATE(262), + [sym_do_statement] = STATE(262), + [sym_for_statement] = STATE(262), + [sym_return_statement] = STATE(262), + [sym_break_statement] = STATE(262), + [sym_continue_statement] = STATE(262), + [sym_goto_statement] = STATE(262), + [sym__expression] = STATE(605), + [sym_comma_expression] = STATE(1011), + [sym_conditional_expression] = STATE(605), + [sym_assignment_expression] = STATE(605), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(605), + [sym_binary_expression] = STATE(605), + [sym_update_expression] = STATE(605), + [sym_cast_expression] = STATE(605), + [sym_sizeof_expression] = STATE(605), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(605), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(605), + [sym_concatenated_string] = STATE(605), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(600), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(610), + [anon_sym_switch] = ACTIONS(612), + [anon_sym_case] = ACTIONS(614), + [anon_sym_default] = ACTIONS(616), + [anon_sym_while] = ACTIONS(618), + [anon_sym_do] = ACTIONS(620), + [anon_sym_for] = ACTIONS(622), + [anon_sym_return] = ACTIONS(624), + [anon_sym_break] = ACTIONS(626), + [anon_sym_continue] = ACTIONS(628), + [anon_sym_goto] = ACTIONS(630), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(632), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(634), + [sym_false] = ACTIONS(634), + [sym_null] = ACTIONS(634), + [sym_comment] = ACTIONS(3), + }, + [97] = { + [sym_compound_statement] = STATE(165), + [sym_labeled_statement] = STATE(165), + [sym_expression_statement] = STATE(165), + [sym_if_statement] = STATE(165), + [sym_switch_statement] = STATE(165), + [sym_case_statement] = STATE(165), + [sym_while_statement] = STATE(165), + [sym_do_statement] = STATE(165), + [sym_for_statement] = STATE(165), + [sym_return_statement] = STATE(165), + [sym_break_statement] = STATE(165), + [sym_continue_statement] = STATE(165), + [sym_goto_statement] = STATE(165), + [sym__expression] = STATE(575), + [sym_comma_expression] = STATE(1080), + [sym_conditional_expression] = STATE(575), + [sym_assignment_expression] = STATE(575), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(575), + [sym_binary_expression] = STATE(575), + [sym_update_expression] = STATE(575), + [sym_cast_expression] = STATE(575), + [sym_sizeof_expression] = STATE(575), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(952), + [anon_sym_SEMI] = ACTIONS(103), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(115), + [anon_sym_case] = ACTIONS(117), + [anon_sym_default] = ACTIONS(119), + [anon_sym_while] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_break] = ACTIONS(129), + [anon_sym_continue] = ACTIONS(131), + [anon_sym_goto] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(135), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(137), + [sym_false] = ACTIONS(137), + [sym_null] = ACTIONS(137), + [sym_comment] = ACTIONS(3), + }, + [98] = { + [sym_compound_statement] = STATE(261), + [sym_labeled_statement] = STATE(261), + [sym_expression_statement] = STATE(261), + [sym_if_statement] = STATE(261), + [sym_switch_statement] = STATE(261), + [sym_case_statement] = STATE(261), + [sym_while_statement] = STATE(261), + [sym_do_statement] = STATE(261), + [sym_for_statement] = STATE(261), + [sym_return_statement] = STATE(261), + [sym_break_statement] = STATE(261), + [sym_continue_statement] = STATE(261), + [sym_goto_statement] = STATE(261), + [sym__expression] = STATE(605), + [sym_comma_expression] = STATE(1011), + [sym_conditional_expression] = STATE(605), + [sym_assignment_expression] = STATE(605), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(605), + [sym_binary_expression] = STATE(605), + [sym_update_expression] = STATE(605), + [sym_cast_expression] = STATE(605), + [sym_sizeof_expression] = STATE(605), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(605), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(605), + [sym_concatenated_string] = STATE(605), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(600), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(610), + [anon_sym_switch] = ACTIONS(612), + [anon_sym_case] = ACTIONS(614), + [anon_sym_default] = ACTIONS(616), + [anon_sym_while] = ACTIONS(618), + [anon_sym_do] = ACTIONS(620), + [anon_sym_for] = ACTIONS(622), + [anon_sym_return] = ACTIONS(624), + [anon_sym_break] = ACTIONS(626), + [anon_sym_continue] = ACTIONS(628), + [anon_sym_goto] = ACTIONS(630), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(632), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(634), + [sym_false] = ACTIONS(634), + [sym_null] = ACTIONS(634), + [sym_comment] = ACTIONS(3), + }, + [99] = { + [sym_compound_statement] = STATE(245), + [sym_labeled_statement] = STATE(245), + [sym_expression_statement] = STATE(245), + [sym_if_statement] = STATE(245), + [sym_switch_statement] = STATE(245), + [sym_case_statement] = STATE(245), + [sym_while_statement] = STATE(245), + [sym_do_statement] = STATE(245), + [sym_for_statement] = STATE(245), + [sym_return_statement] = STATE(245), + [sym_break_statement] = STATE(245), + [sym_continue_statement] = STATE(245), + [sym_goto_statement] = STATE(245), + [sym__expression] = STATE(605), + [sym_comma_expression] = STATE(1011), + [sym_conditional_expression] = STATE(605), + [sym_assignment_expression] = STATE(605), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(605), + [sym_binary_expression] = STATE(605), + [sym_update_expression] = STATE(605), + [sym_cast_expression] = STATE(605), + [sym_sizeof_expression] = STATE(605), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(605), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(605), + [sym_concatenated_string] = STATE(605), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(600), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(610), + [anon_sym_switch] = ACTIONS(612), + [anon_sym_case] = ACTIONS(614), + [anon_sym_default] = ACTIONS(616), + [anon_sym_while] = ACTIONS(618), + [anon_sym_do] = ACTIONS(620), + [anon_sym_for] = ACTIONS(622), + [anon_sym_return] = ACTIONS(624), + [anon_sym_break] = ACTIONS(626), + [anon_sym_continue] = ACTIONS(628), + [anon_sym_goto] = ACTIONS(630), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(632), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(634), + [sym_false] = ACTIONS(634), + [sym_null] = ACTIONS(634), + [sym_comment] = ACTIONS(3), + }, + [100] = { + [sym_compound_statement] = STATE(194), + [sym_labeled_statement] = STATE(194), + [sym_expression_statement] = STATE(194), + [sym_if_statement] = STATE(194), + [sym_switch_statement] = STATE(194), + [sym_case_statement] = STATE(194), + [sym_while_statement] = STATE(194), + [sym_do_statement] = STATE(194), + [sym_for_statement] = STATE(194), + [sym_return_statement] = STATE(194), + [sym_break_statement] = STATE(194), + [sym_continue_statement] = STATE(194), + [sym_goto_statement] = STATE(194), + [sym__expression] = STATE(594), + [sym_comma_expression] = STATE(1051), + [sym_conditional_expression] = STATE(594), + [sym_assignment_expression] = STATE(594), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(594), + [sym_binary_expression] = STATE(594), + [sym_update_expression] = STATE(594), + [sym_cast_expression] = STATE(594), + [sym_sizeof_expression] = STATE(594), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(594), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(594), + [sym_concatenated_string] = STATE(594), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(47), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_case] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_do] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_break] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_goto] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(77), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + }, + [101] = { + [sym_compound_statement] = STATE(159), + [sym_labeled_statement] = STATE(159), + [sym_expression_statement] = STATE(159), + [sym_if_statement] = STATE(159), + [sym_switch_statement] = STATE(159), + [sym_case_statement] = STATE(159), + [sym_while_statement] = STATE(159), + [sym_do_statement] = STATE(159), + [sym_for_statement] = STATE(159), + [sym_return_statement] = STATE(159), + [sym_break_statement] = STATE(159), + [sym_continue_statement] = STATE(159), + [sym_goto_statement] = STATE(159), + [sym__expression] = STATE(575), + [sym_comma_expression] = STATE(1080), + [sym_conditional_expression] = STATE(575), + [sym_assignment_expression] = STATE(575), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(575), + [sym_binary_expression] = STATE(575), + [sym_update_expression] = STATE(575), + [sym_cast_expression] = STATE(575), + [sym_sizeof_expression] = STATE(575), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(952), + [anon_sym_SEMI] = ACTIONS(103), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(115), + [anon_sym_case] = ACTIONS(117), + [anon_sym_default] = ACTIONS(119), + [anon_sym_while] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_break] = ACTIONS(129), + [anon_sym_continue] = ACTIONS(131), + [anon_sym_goto] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(135), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(137), + [sym_false] = ACTIONS(137), + [sym_null] = ACTIONS(137), + [sym_comment] = ACTIONS(3), + }, + [102] = { + [sym_compound_statement] = STATE(161), + [sym_labeled_statement] = STATE(161), + [sym_expression_statement] = STATE(161), + [sym_if_statement] = STATE(161), + [sym_switch_statement] = STATE(161), + [sym_case_statement] = STATE(161), + [sym_while_statement] = STATE(161), + [sym_do_statement] = STATE(161), + [sym_for_statement] = STATE(161), + [sym_return_statement] = STATE(161), + [sym_break_statement] = STATE(161), + [sym_continue_statement] = STATE(161), + [sym_goto_statement] = STATE(161), + [sym__expression] = STATE(575), + [sym_comma_expression] = STATE(1080), + [sym_conditional_expression] = STATE(575), + [sym_assignment_expression] = STATE(575), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(575), + [sym_binary_expression] = STATE(575), + [sym_update_expression] = STATE(575), + [sym_cast_expression] = STATE(575), + [sym_sizeof_expression] = STATE(575), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(952), + [anon_sym_SEMI] = ACTIONS(103), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(115), + [anon_sym_case] = ACTIONS(117), + [anon_sym_default] = ACTIONS(119), + [anon_sym_while] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_break] = ACTIONS(129), + [anon_sym_continue] = ACTIONS(131), + [anon_sym_goto] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(135), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(137), + [sym_false] = ACTIONS(137), + [sym_null] = ACTIONS(137), + [sym_comment] = ACTIONS(3), + }, + [103] = { + [sym_compound_statement] = STATE(211), + [sym_labeled_statement] = STATE(211), + [sym_expression_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_switch_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_do_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_return_statement] = STATE(211), + [sym_break_statement] = STATE(211), + [sym_continue_statement] = STATE(211), + [sym_goto_statement] = STATE(211), + [sym__expression] = STATE(615), + [sym_comma_expression] = STATE(1128), + [sym_conditional_expression] = STATE(615), + [sym_assignment_expression] = STATE(615), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(615), + [sym_binary_expression] = STATE(615), + [sym_update_expression] = STATE(615), + [sym_cast_expression] = STATE(615), + [sym_sizeof_expression] = STATE(615), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(615), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(615), + [sym_concatenated_string] = STATE(615), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(304), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(316), + [anon_sym_switch] = ACTIONS(318), + [anon_sym_case] = ACTIONS(320), + [anon_sym_default] = ACTIONS(322), + [anon_sym_while] = ACTIONS(324), + [anon_sym_do] = ACTIONS(326), + [anon_sym_for] = ACTIONS(328), + [anon_sym_return] = ACTIONS(330), + [anon_sym_break] = ACTIONS(332), + [anon_sym_continue] = ACTIONS(334), + [anon_sym_goto] = ACTIONS(336), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(338), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(340), + [sym_false] = ACTIONS(340), + [sym_null] = ACTIONS(340), + [sym_comment] = ACTIONS(3), + }, + [104] = { + [sym_compound_statement] = STATE(167), + [sym_labeled_statement] = STATE(167), + [sym_expression_statement] = STATE(167), + [sym_if_statement] = STATE(167), + [sym_switch_statement] = STATE(167), + [sym_case_statement] = STATE(167), + [sym_while_statement] = STATE(167), + [sym_do_statement] = STATE(167), + [sym_for_statement] = STATE(167), + [sym_return_statement] = STATE(167), + [sym_break_statement] = STATE(167), + [sym_continue_statement] = STATE(167), + [sym_goto_statement] = STATE(167), + [sym__expression] = STATE(575), + [sym_comma_expression] = STATE(1080), + [sym_conditional_expression] = STATE(575), + [sym_assignment_expression] = STATE(575), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(575), + [sym_binary_expression] = STATE(575), + [sym_update_expression] = STATE(575), + [sym_cast_expression] = STATE(575), + [sym_sizeof_expression] = STATE(575), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(952), + [anon_sym_SEMI] = ACTIONS(103), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(115), + [anon_sym_case] = ACTIONS(117), + [anon_sym_default] = ACTIONS(119), + [anon_sym_while] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_break] = ACTIONS(129), + [anon_sym_continue] = ACTIONS(131), + [anon_sym_goto] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(135), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(137), + [sym_false] = ACTIONS(137), + [sym_null] = ACTIONS(137), + [sym_comment] = ACTIONS(3), + }, + [105] = { + [sym_compound_statement] = STATE(240), + [sym_labeled_statement] = STATE(240), + [sym_expression_statement] = STATE(240), + [sym_if_statement] = STATE(240), + [sym_switch_statement] = STATE(240), + [sym_case_statement] = STATE(240), + [sym_while_statement] = STATE(240), + [sym_do_statement] = STATE(240), + [sym_for_statement] = STATE(240), + [sym_return_statement] = STATE(240), + [sym_break_statement] = STATE(240), + [sym_continue_statement] = STATE(240), + [sym_goto_statement] = STATE(240), + [sym__expression] = STATE(605), + [sym_comma_expression] = STATE(1011), + [sym_conditional_expression] = STATE(605), + [sym_assignment_expression] = STATE(605), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(605), + [sym_binary_expression] = STATE(605), + [sym_update_expression] = STATE(605), + [sym_cast_expression] = STATE(605), + [sym_sizeof_expression] = STATE(605), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(605), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(605), + [sym_concatenated_string] = STATE(605), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(600), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(610), + [anon_sym_switch] = ACTIONS(612), + [anon_sym_case] = ACTIONS(614), + [anon_sym_default] = ACTIONS(616), + [anon_sym_while] = ACTIONS(618), + [anon_sym_do] = ACTIONS(620), + [anon_sym_for] = ACTIONS(622), + [anon_sym_return] = ACTIONS(624), + [anon_sym_break] = ACTIONS(626), + [anon_sym_continue] = ACTIONS(628), + [anon_sym_goto] = ACTIONS(630), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(632), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(634), + [sym_false] = ACTIONS(634), + [sym_null] = ACTIONS(634), + [sym_comment] = ACTIONS(3), + }, + [106] = { + [sym_compound_statement] = STATE(217), + [sym_labeled_statement] = STATE(217), + [sym_expression_statement] = STATE(217), + [sym_if_statement] = STATE(217), + [sym_switch_statement] = STATE(217), + [sym_case_statement] = STATE(217), + [sym_while_statement] = STATE(217), + [sym_do_statement] = STATE(217), + [sym_for_statement] = STATE(217), + [sym_return_statement] = STATE(217), + [sym_break_statement] = STATE(217), + [sym_continue_statement] = STATE(217), + [sym_goto_statement] = STATE(217), + [sym__expression] = STATE(615), + [sym_comma_expression] = STATE(1128), + [sym_conditional_expression] = STATE(615), + [sym_assignment_expression] = STATE(615), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(615), + [sym_binary_expression] = STATE(615), + [sym_update_expression] = STATE(615), + [sym_cast_expression] = STATE(615), + [sym_sizeof_expression] = STATE(615), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(615), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(615), + [sym_concatenated_string] = STATE(615), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(304), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(316), + [anon_sym_switch] = ACTIONS(318), + [anon_sym_case] = ACTIONS(320), + [anon_sym_default] = ACTIONS(322), + [anon_sym_while] = ACTIONS(324), + [anon_sym_do] = ACTIONS(326), + [anon_sym_for] = ACTIONS(328), + [anon_sym_return] = ACTIONS(330), + [anon_sym_break] = ACTIONS(332), + [anon_sym_continue] = ACTIONS(334), + [anon_sym_goto] = ACTIONS(336), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(338), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(340), + [sym_false] = ACTIONS(340), + [sym_null] = ACTIONS(340), + [sym_comment] = ACTIONS(3), + }, + [107] = { + [sym_compound_statement] = STATE(227), + [sym_labeled_statement] = STATE(227), + [sym_expression_statement] = STATE(227), + [sym_if_statement] = STATE(227), + [sym_switch_statement] = STATE(227), + [sym_case_statement] = STATE(227), + [sym_while_statement] = STATE(227), + [sym_do_statement] = STATE(227), + [sym_for_statement] = STATE(227), + [sym_return_statement] = STATE(227), + [sym_break_statement] = STATE(227), + [sym_continue_statement] = STATE(227), + [sym_goto_statement] = STATE(227), + [sym__expression] = STATE(615), + [sym_comma_expression] = STATE(1128), + [sym_conditional_expression] = STATE(615), + [sym_assignment_expression] = STATE(615), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(615), + [sym_binary_expression] = STATE(615), + [sym_update_expression] = STATE(615), + [sym_cast_expression] = STATE(615), + [sym_sizeof_expression] = STATE(615), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(615), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(615), + [sym_concatenated_string] = STATE(615), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(304), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(316), + [anon_sym_switch] = ACTIONS(318), + [anon_sym_case] = ACTIONS(320), + [anon_sym_default] = ACTIONS(322), + [anon_sym_while] = ACTIONS(324), + [anon_sym_do] = ACTIONS(326), + [anon_sym_for] = ACTIONS(328), + [anon_sym_return] = ACTIONS(330), + [anon_sym_break] = ACTIONS(332), + [anon_sym_continue] = ACTIONS(334), + [anon_sym_goto] = ACTIONS(336), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(338), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(340), + [sym_false] = ACTIONS(340), + [sym_null] = ACTIONS(340), + [sym_comment] = ACTIONS(3), + }, + [108] = { + [sym_compound_statement] = STATE(1010), + [sym_labeled_statement] = STATE(1010), + [sym_expression_statement] = STATE(1010), + [sym_if_statement] = STATE(1010), + [sym_switch_statement] = STATE(1010), + [sym_case_statement] = STATE(1010), + [sym_while_statement] = STATE(1010), + [sym_do_statement] = STATE(1010), + [sym_for_statement] = STATE(1010), + [sym_return_statement] = STATE(1010), + [sym_break_statement] = STATE(1010), + [sym_continue_statement] = STATE(1010), + [sym_goto_statement] = STATE(1010), + [sym__expression] = STATE(594), + [sym_comma_expression] = STATE(1051), + [sym_conditional_expression] = STATE(594), + [sym_assignment_expression] = STATE(594), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(594), + [sym_binary_expression] = STATE(594), + [sym_update_expression] = STATE(594), + [sym_cast_expression] = STATE(594), + [sym_sizeof_expression] = STATE(594), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(594), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(594), + [sym_concatenated_string] = STATE(594), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(47), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_case] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_do] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_break] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_goto] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(77), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + }, + [109] = { + [sym_compound_statement] = STATE(253), + [sym_labeled_statement] = STATE(253), + [sym_expression_statement] = STATE(253), + [sym_if_statement] = STATE(253), + [sym_switch_statement] = STATE(253), + [sym_case_statement] = STATE(253), + [sym_while_statement] = STATE(253), + [sym_do_statement] = STATE(253), + [sym_for_statement] = STATE(253), + [sym_return_statement] = STATE(253), + [sym_break_statement] = STATE(253), + [sym_continue_statement] = STATE(253), + [sym_goto_statement] = STATE(253), + [sym__expression] = STATE(615), + [sym_comma_expression] = STATE(1128), + [sym_conditional_expression] = STATE(615), + [sym_assignment_expression] = STATE(615), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(615), + [sym_binary_expression] = STATE(615), + [sym_update_expression] = STATE(615), + [sym_cast_expression] = STATE(615), + [sym_sizeof_expression] = STATE(615), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(615), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(615), + [sym_concatenated_string] = STATE(615), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(304), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(316), + [anon_sym_switch] = ACTIONS(318), + [anon_sym_case] = ACTIONS(320), + [anon_sym_default] = ACTIONS(322), + [anon_sym_while] = ACTIONS(324), + [anon_sym_do] = ACTIONS(326), + [anon_sym_for] = ACTIONS(328), + [anon_sym_return] = ACTIONS(330), + [anon_sym_break] = ACTIONS(332), + [anon_sym_continue] = ACTIONS(334), + [anon_sym_goto] = ACTIONS(336), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(338), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(340), + [sym_false] = ACTIONS(340), + [sym_null] = ACTIONS(340), + [sym_comment] = ACTIONS(3), + }, + [110] = { + [sym_compound_statement] = STATE(141), + [sym_labeled_statement] = STATE(141), + [sym_expression_statement] = STATE(141), + [sym_if_statement] = STATE(141), + [sym_switch_statement] = STATE(141), + [sym_case_statement] = STATE(141), + [sym_while_statement] = STATE(141), + [sym_do_statement] = STATE(141), + [sym_for_statement] = STATE(141), + [sym_return_statement] = STATE(141), + [sym_break_statement] = STATE(141), + [sym_continue_statement] = STATE(141), + [sym_goto_statement] = STATE(141), + [sym__expression] = STATE(575), + [sym_comma_expression] = STATE(1080), + [sym_conditional_expression] = STATE(575), + [sym_assignment_expression] = STATE(575), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(575), + [sym_binary_expression] = STATE(575), + [sym_update_expression] = STATE(575), + [sym_cast_expression] = STATE(575), + [sym_sizeof_expression] = STATE(575), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(952), + [anon_sym_SEMI] = ACTIONS(103), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(115), + [anon_sym_case] = ACTIONS(117), + [anon_sym_default] = ACTIONS(119), + [anon_sym_while] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_break] = ACTIONS(129), + [anon_sym_continue] = ACTIONS(131), + [anon_sym_goto] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(135), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(137), + [sym_false] = ACTIONS(137), + [sym_null] = ACTIONS(137), + [sym_comment] = ACTIONS(3), + }, + [111] = { + [sym_compound_statement] = STATE(252), + [sym_labeled_statement] = STATE(252), + [sym_expression_statement] = STATE(252), + [sym_if_statement] = STATE(252), + [sym_switch_statement] = STATE(252), + [sym_case_statement] = STATE(252), + [sym_while_statement] = STATE(252), + [sym_do_statement] = STATE(252), + [sym_for_statement] = STATE(252), + [sym_return_statement] = STATE(252), + [sym_break_statement] = STATE(252), + [sym_continue_statement] = STATE(252), + [sym_goto_statement] = STATE(252), + [sym__expression] = STATE(615), + [sym_comma_expression] = STATE(1128), + [sym_conditional_expression] = STATE(615), + [sym_assignment_expression] = STATE(615), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(615), + [sym_binary_expression] = STATE(615), + [sym_update_expression] = STATE(615), + [sym_cast_expression] = STATE(615), + [sym_sizeof_expression] = STATE(615), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(615), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(615), + [sym_concatenated_string] = STATE(615), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(304), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(316), + [anon_sym_switch] = ACTIONS(318), + [anon_sym_case] = ACTIONS(320), + [anon_sym_default] = ACTIONS(322), + [anon_sym_while] = ACTIONS(324), + [anon_sym_do] = ACTIONS(326), + [anon_sym_for] = ACTIONS(328), + [anon_sym_return] = ACTIONS(330), + [anon_sym_break] = ACTIONS(332), + [anon_sym_continue] = ACTIONS(334), + [anon_sym_goto] = ACTIONS(336), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(338), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(340), + [sym_false] = ACTIONS(340), + [sym_null] = ACTIONS(340), + [sym_comment] = ACTIONS(3), + }, + [112] = { + [sym_compound_statement] = STATE(239), + [sym_labeled_statement] = STATE(239), + [sym_expression_statement] = STATE(239), + [sym_if_statement] = STATE(239), + [sym_switch_statement] = STATE(239), + [sym_case_statement] = STATE(239), + [sym_while_statement] = STATE(239), + [sym_do_statement] = STATE(239), + [sym_for_statement] = STATE(239), + [sym_return_statement] = STATE(239), + [sym_break_statement] = STATE(239), + [sym_continue_statement] = STATE(239), + [sym_goto_statement] = STATE(239), + [sym__expression] = STATE(615), + [sym_comma_expression] = STATE(1128), + [sym_conditional_expression] = STATE(615), + [sym_assignment_expression] = STATE(615), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(615), + [sym_binary_expression] = STATE(615), + [sym_update_expression] = STATE(615), + [sym_cast_expression] = STATE(615), + [sym_sizeof_expression] = STATE(615), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(615), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(615), + [sym_concatenated_string] = STATE(615), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(304), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(316), + [anon_sym_switch] = ACTIONS(318), + [anon_sym_case] = ACTIONS(320), + [anon_sym_default] = ACTIONS(322), + [anon_sym_while] = ACTIONS(324), + [anon_sym_do] = ACTIONS(326), + [anon_sym_for] = ACTIONS(328), + [anon_sym_return] = ACTIONS(330), + [anon_sym_break] = ACTIONS(332), + [anon_sym_continue] = ACTIONS(334), + [anon_sym_goto] = ACTIONS(336), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(338), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(340), + [sym_false] = ACTIONS(340), + [sym_null] = ACTIONS(340), + [sym_comment] = ACTIONS(3), + }, + [113] = { + [sym_compound_statement] = STATE(209), + [sym_labeled_statement] = STATE(209), + [sym_expression_statement] = STATE(209), + [sym_if_statement] = STATE(209), + [sym_switch_statement] = STATE(209), + [sym_case_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_do_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_return_statement] = STATE(209), + [sym_break_statement] = STATE(209), + [sym_continue_statement] = STATE(209), + [sym_goto_statement] = STATE(209), + [sym__expression] = STATE(594), + [sym_comma_expression] = STATE(1051), + [sym_conditional_expression] = STATE(594), + [sym_assignment_expression] = STATE(594), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(594), + [sym_binary_expression] = STATE(594), + [sym_update_expression] = STATE(594), + [sym_cast_expression] = STATE(594), + [sym_sizeof_expression] = STATE(594), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(594), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(594), + [sym_concatenated_string] = STATE(594), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(47), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_case] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_do] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_break] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_goto] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(77), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + }, + [114] = { + [sym_compound_statement] = STATE(274), + [sym_labeled_statement] = STATE(274), + [sym_expression_statement] = STATE(274), + [sym_if_statement] = STATE(274), + [sym_switch_statement] = STATE(274), + [sym_case_statement] = STATE(274), + [sym_while_statement] = STATE(274), + [sym_do_statement] = STATE(274), + [sym_for_statement] = STATE(274), + [sym_return_statement] = STATE(274), + [sym_break_statement] = STATE(274), + [sym_continue_statement] = STATE(274), + [sym_goto_statement] = STATE(274), + [sym__expression] = STATE(615), + [sym_comma_expression] = STATE(1128), + [sym_conditional_expression] = STATE(615), + [sym_assignment_expression] = STATE(615), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(615), + [sym_binary_expression] = STATE(615), + [sym_update_expression] = STATE(615), + [sym_cast_expression] = STATE(615), + [sym_sizeof_expression] = STATE(615), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(615), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(615), + [sym_concatenated_string] = STATE(615), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(304), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(316), + [anon_sym_switch] = ACTIONS(318), + [anon_sym_case] = ACTIONS(320), + [anon_sym_default] = ACTIONS(322), + [anon_sym_while] = ACTIONS(324), + [anon_sym_do] = ACTIONS(326), + [anon_sym_for] = ACTIONS(328), + [anon_sym_return] = ACTIONS(330), + [anon_sym_break] = ACTIONS(332), + [anon_sym_continue] = ACTIONS(334), + [anon_sym_goto] = ACTIONS(336), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(338), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(340), + [sym_false] = ACTIONS(340), + [sym_null] = ACTIONS(340), + [sym_comment] = ACTIONS(3), + }, + [115] = { + [sym_compound_statement] = STATE(208), + [sym_labeled_statement] = STATE(208), + [sym_expression_statement] = STATE(208), + [sym_if_statement] = STATE(208), + [sym_switch_statement] = STATE(208), + [sym_case_statement] = STATE(208), + [sym_while_statement] = STATE(208), + [sym_do_statement] = STATE(208), + [sym_for_statement] = STATE(208), + [sym_return_statement] = STATE(208), + [sym_break_statement] = STATE(208), + [sym_continue_statement] = STATE(208), + [sym_goto_statement] = STATE(208), + [sym__expression] = STATE(594), + [sym_comma_expression] = STATE(1051), + [sym_conditional_expression] = STATE(594), + [sym_assignment_expression] = STATE(594), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(594), + [sym_binary_expression] = STATE(594), + [sym_update_expression] = STATE(594), + [sym_cast_expression] = STATE(594), + [sym_sizeof_expression] = STATE(594), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(594), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(594), + [sym_concatenated_string] = STATE(594), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(47), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_case] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_do] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_break] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_goto] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(77), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + }, + [116] = { + [sym_compound_statement] = STATE(1151), + [sym_labeled_statement] = STATE(1151), + [sym_expression_statement] = STATE(1151), + [sym_if_statement] = STATE(1151), + [sym_switch_statement] = STATE(1151), + [sym_case_statement] = STATE(1151), + [sym_while_statement] = STATE(1151), + [sym_do_statement] = STATE(1151), + [sym_for_statement] = STATE(1151), + [sym_return_statement] = STATE(1151), + [sym_break_statement] = STATE(1151), + [sym_continue_statement] = STATE(1151), + [sym_goto_statement] = STATE(1151), + [sym__expression] = STATE(594), + [sym_comma_expression] = STATE(1051), + [sym_conditional_expression] = STATE(594), + [sym_assignment_expression] = STATE(594), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(594), + [sym_binary_expression] = STATE(594), + [sym_update_expression] = STATE(594), + [sym_cast_expression] = STATE(594), + [sym_sizeof_expression] = STATE(594), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(594), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(594), + [sym_concatenated_string] = STATE(594), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(47), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_case] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_do] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_break] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_goto] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(77), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + }, + [117] = { + [sym_compound_statement] = STATE(238), + [sym_labeled_statement] = STATE(238), + [sym_expression_statement] = STATE(238), + [sym_if_statement] = STATE(238), + [sym_switch_statement] = STATE(238), + [sym_case_statement] = STATE(238), + [sym_while_statement] = STATE(238), + [sym_do_statement] = STATE(238), + [sym_for_statement] = STATE(238), + [sym_return_statement] = STATE(238), + [sym_break_statement] = STATE(238), + [sym_continue_statement] = STATE(238), + [sym_goto_statement] = STATE(238), + [sym__expression] = STATE(615), + [sym_comma_expression] = STATE(1128), + [sym_conditional_expression] = STATE(615), + [sym_assignment_expression] = STATE(615), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(615), + [sym_binary_expression] = STATE(615), + [sym_update_expression] = STATE(615), + [sym_cast_expression] = STATE(615), + [sym_sizeof_expression] = STATE(615), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(615), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(615), + [sym_concatenated_string] = STATE(615), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(304), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(316), + [anon_sym_switch] = ACTIONS(318), + [anon_sym_case] = ACTIONS(320), + [anon_sym_default] = ACTIONS(322), + [anon_sym_while] = ACTIONS(324), + [anon_sym_do] = ACTIONS(326), + [anon_sym_for] = ACTIONS(328), + [anon_sym_return] = ACTIONS(330), + [anon_sym_break] = ACTIONS(332), + [anon_sym_continue] = ACTIONS(334), + [anon_sym_goto] = ACTIONS(336), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(338), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(340), + [sym_false] = ACTIONS(340), + [sym_null] = ACTIONS(340), + [sym_comment] = ACTIONS(3), + }, + [118] = { + [sym_compound_statement] = STATE(218), + [sym_labeled_statement] = STATE(218), + [sym_expression_statement] = STATE(218), + [sym_if_statement] = STATE(218), + [sym_switch_statement] = STATE(218), + [sym_case_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_do_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_return_statement] = STATE(218), + [sym_break_statement] = STATE(218), + [sym_continue_statement] = STATE(218), + [sym_goto_statement] = STATE(218), + [sym__expression] = STATE(594), + [sym_comma_expression] = STATE(1051), + [sym_conditional_expression] = STATE(594), + [sym_assignment_expression] = STATE(594), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(594), + [sym_binary_expression] = STATE(594), + [sym_update_expression] = STATE(594), + [sym_cast_expression] = STATE(594), + [sym_sizeof_expression] = STATE(594), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(594), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(594), + [sym_concatenated_string] = STATE(594), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(47), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_case] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_do] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_break] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_goto] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(77), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + }, + [119] = { + [sym_compound_statement] = STATE(268), + [sym_labeled_statement] = STATE(268), + [sym_expression_statement] = STATE(268), + [sym_if_statement] = STATE(268), + [sym_switch_statement] = STATE(268), + [sym_case_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_do_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_return_statement] = STATE(268), + [sym_break_statement] = STATE(268), + [sym_continue_statement] = STATE(268), + [sym_goto_statement] = STATE(268), + [sym__expression] = STATE(615), + [sym_comma_expression] = STATE(1128), + [sym_conditional_expression] = STATE(615), + [sym_assignment_expression] = STATE(615), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(615), + [sym_binary_expression] = STATE(615), + [sym_update_expression] = STATE(615), + [sym_cast_expression] = STATE(615), + [sym_sizeof_expression] = STATE(615), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(615), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(615), + [sym_concatenated_string] = STATE(615), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(304), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(316), + [anon_sym_switch] = ACTIONS(318), + [anon_sym_case] = ACTIONS(320), + [anon_sym_default] = ACTIONS(322), + [anon_sym_while] = ACTIONS(324), + [anon_sym_do] = ACTIONS(326), + [anon_sym_for] = ACTIONS(328), + [anon_sym_return] = ACTIONS(330), + [anon_sym_break] = ACTIONS(332), + [anon_sym_continue] = ACTIONS(334), + [anon_sym_goto] = ACTIONS(336), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(338), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(340), + [sym_false] = ACTIONS(340), + [sym_null] = ACTIONS(340), + [sym_comment] = ACTIONS(3), + }, + [120] = { + [sym_compound_statement] = STATE(285), + [sym_labeled_statement] = STATE(285), + [sym_expression_statement] = STATE(285), + [sym_if_statement] = STATE(285), + [sym_switch_statement] = STATE(285), + [sym_case_statement] = STATE(285), + [sym_while_statement] = STATE(285), + [sym_do_statement] = STATE(285), + [sym_for_statement] = STATE(285), + [sym_return_statement] = STATE(285), + [sym_break_statement] = STATE(285), + [sym_continue_statement] = STATE(285), + [sym_goto_statement] = STATE(285), + [sym__expression] = STATE(605), + [sym_comma_expression] = STATE(1011), + [sym_conditional_expression] = STATE(605), + [sym_assignment_expression] = STATE(605), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(605), + [sym_binary_expression] = STATE(605), + [sym_update_expression] = STATE(605), + [sym_cast_expression] = STATE(605), + [sym_sizeof_expression] = STATE(605), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(605), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(605), + [sym_concatenated_string] = STATE(605), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(600), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(610), + [anon_sym_switch] = ACTIONS(612), + [anon_sym_case] = ACTIONS(614), + [anon_sym_default] = ACTIONS(616), + [anon_sym_while] = ACTIONS(618), + [anon_sym_do] = ACTIONS(620), + [anon_sym_for] = ACTIONS(622), + [anon_sym_return] = ACTIONS(624), + [anon_sym_break] = ACTIONS(626), + [anon_sym_continue] = ACTIONS(628), + [anon_sym_goto] = ACTIONS(630), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(632), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(634), + [sym_false] = ACTIONS(634), + [sym_null] = ACTIONS(634), + [sym_comment] = ACTIONS(3), + }, + [121] = { + [sym_compound_statement] = STATE(264), + [sym_labeled_statement] = STATE(264), + [sym_expression_statement] = STATE(264), + [sym_if_statement] = STATE(264), + [sym_switch_statement] = STATE(264), + [sym_case_statement] = STATE(264), + [sym_while_statement] = STATE(264), + [sym_do_statement] = STATE(264), + [sym_for_statement] = STATE(264), + [sym_return_statement] = STATE(264), + [sym_break_statement] = STATE(264), + [sym_continue_statement] = STATE(264), + [sym_goto_statement] = STATE(264), + [sym__expression] = STATE(615), + [sym_comma_expression] = STATE(1128), + [sym_conditional_expression] = STATE(615), + [sym_assignment_expression] = STATE(615), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(615), + [sym_binary_expression] = STATE(615), + [sym_update_expression] = STATE(615), + [sym_cast_expression] = STATE(615), + [sym_sizeof_expression] = STATE(615), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(615), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(615), + [sym_concatenated_string] = STATE(615), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(304), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(316), + [anon_sym_switch] = ACTIONS(318), + [anon_sym_case] = ACTIONS(320), + [anon_sym_default] = ACTIONS(322), + [anon_sym_while] = ACTIONS(324), + [anon_sym_do] = ACTIONS(326), + [anon_sym_for] = ACTIONS(328), + [anon_sym_return] = ACTIONS(330), + [anon_sym_break] = ACTIONS(332), + [anon_sym_continue] = ACTIONS(334), + [anon_sym_goto] = ACTIONS(336), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(338), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(340), + [sym_false] = ACTIONS(340), + [sym_null] = ACTIONS(340), + [sym_comment] = ACTIONS(3), + }, + [122] = { + [sym_compound_statement] = STATE(219), + [sym_labeled_statement] = STATE(219), + [sym_expression_statement] = STATE(219), + [sym_if_statement] = STATE(219), + [sym_switch_statement] = STATE(219), + [sym_case_statement] = STATE(219), + [sym_while_statement] = STATE(219), + [sym_do_statement] = STATE(219), + [sym_for_statement] = STATE(219), + [sym_return_statement] = STATE(219), + [sym_break_statement] = STATE(219), + [sym_continue_statement] = STATE(219), + [sym_goto_statement] = STATE(219), + [sym__expression] = STATE(594), + [sym_comma_expression] = STATE(1051), + [sym_conditional_expression] = STATE(594), + [sym_assignment_expression] = STATE(594), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(594), + [sym_binary_expression] = STATE(594), + [sym_update_expression] = STATE(594), + [sym_cast_expression] = STATE(594), + [sym_sizeof_expression] = STATE(594), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(594), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(594), + [sym_concatenated_string] = STATE(594), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(47), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_case] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_do] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_break] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_goto] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(77), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + }, + [123] = { + [sym_compound_statement] = STATE(223), + [sym_labeled_statement] = STATE(223), + [sym_expression_statement] = STATE(223), + [sym_if_statement] = STATE(223), + [sym_switch_statement] = STATE(223), + [sym_case_statement] = STATE(223), + [sym_while_statement] = STATE(223), + [sym_do_statement] = STATE(223), + [sym_for_statement] = STATE(223), + [sym_return_statement] = STATE(223), + [sym_break_statement] = STATE(223), + [sym_continue_statement] = STATE(223), + [sym_goto_statement] = STATE(223), + [sym__expression] = STATE(615), + [sym_comma_expression] = STATE(1128), + [sym_conditional_expression] = STATE(615), + [sym_assignment_expression] = STATE(615), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(615), + [sym_binary_expression] = STATE(615), + [sym_update_expression] = STATE(615), + [sym_cast_expression] = STATE(615), + [sym_sizeof_expression] = STATE(615), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(615), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(615), + [sym_concatenated_string] = STATE(615), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(304), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(316), + [anon_sym_switch] = ACTIONS(318), + [anon_sym_case] = ACTIONS(320), + [anon_sym_default] = ACTIONS(322), + [anon_sym_while] = ACTIONS(324), + [anon_sym_do] = ACTIONS(326), + [anon_sym_for] = ACTIONS(328), + [anon_sym_return] = ACTIONS(330), + [anon_sym_break] = ACTIONS(332), + [anon_sym_continue] = ACTIONS(334), + [anon_sym_goto] = ACTIONS(336), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(338), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(340), + [sym_false] = ACTIONS(340), + [sym_null] = ACTIONS(340), + [sym_comment] = ACTIONS(3), + }, + [124] = { + [sym_compound_statement] = STATE(236), + [sym_labeled_statement] = STATE(236), + [sym_expression_statement] = STATE(236), + [sym_if_statement] = STATE(236), + [sym_switch_statement] = STATE(236), + [sym_case_statement] = STATE(236), + [sym_while_statement] = STATE(236), + [sym_do_statement] = STATE(236), + [sym_for_statement] = STATE(236), + [sym_return_statement] = STATE(236), + [sym_break_statement] = STATE(236), + [sym_continue_statement] = STATE(236), + [sym_goto_statement] = STATE(236), + [sym__expression] = STATE(615), + [sym_comma_expression] = STATE(1128), + [sym_conditional_expression] = STATE(615), + [sym_assignment_expression] = STATE(615), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(615), + [sym_binary_expression] = STATE(615), + [sym_update_expression] = STATE(615), + [sym_cast_expression] = STATE(615), + [sym_sizeof_expression] = STATE(615), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(615), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(615), + [sym_concatenated_string] = STATE(615), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(304), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(316), + [anon_sym_switch] = ACTIONS(318), + [anon_sym_case] = ACTIONS(320), + [anon_sym_default] = ACTIONS(322), + [anon_sym_while] = ACTIONS(324), + [anon_sym_do] = ACTIONS(326), + [anon_sym_for] = ACTIONS(328), + [anon_sym_return] = ACTIONS(330), + [anon_sym_break] = ACTIONS(332), + [anon_sym_continue] = ACTIONS(334), + [anon_sym_goto] = ACTIONS(336), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(338), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(340), + [sym_false] = ACTIONS(340), + [sym_null] = ACTIONS(340), + [sym_comment] = ACTIONS(3), + }, + [125] = { + [sym_compound_statement] = STATE(233), + [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(605), + [sym_comma_expression] = STATE(1011), + [sym_conditional_expression] = STATE(605), + [sym_assignment_expression] = STATE(605), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(605), + [sym_binary_expression] = STATE(605), + [sym_update_expression] = STATE(605), + [sym_cast_expression] = STATE(605), + [sym_sizeof_expression] = STATE(605), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(605), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(605), + [sym_concatenated_string] = STATE(605), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(600), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(610), + [anon_sym_switch] = ACTIONS(612), + [anon_sym_case] = ACTIONS(614), + [anon_sym_default] = ACTIONS(616), + [anon_sym_while] = ACTIONS(618), + [anon_sym_do] = ACTIONS(620), + [anon_sym_for] = ACTIONS(622), + [anon_sym_return] = ACTIONS(624), + [anon_sym_break] = ACTIONS(626), + [anon_sym_continue] = ACTIONS(628), + [anon_sym_goto] = ACTIONS(630), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(632), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(634), + [sym_false] = ACTIONS(634), + [sym_null] = ACTIONS(634), + [sym_comment] = ACTIONS(3), + }, + [126] = { + [sym_compound_statement] = STATE(160), + [sym_labeled_statement] = STATE(160), + [sym_expression_statement] = STATE(160), + [sym_if_statement] = STATE(160), + [sym_switch_statement] = STATE(160), + [sym_case_statement] = STATE(160), + [sym_while_statement] = STATE(160), + [sym_do_statement] = STATE(160), + [sym_for_statement] = STATE(160), + [sym_return_statement] = STATE(160), + [sym_break_statement] = STATE(160), + [sym_continue_statement] = STATE(160), + [sym_goto_statement] = STATE(160), + [sym__expression] = STATE(575), + [sym_comma_expression] = STATE(1080), + [sym_conditional_expression] = STATE(575), + [sym_assignment_expression] = STATE(575), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(575), + [sym_binary_expression] = STATE(575), + [sym_update_expression] = STATE(575), + [sym_cast_expression] = STATE(575), + [sym_sizeof_expression] = STATE(575), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(952), + [anon_sym_SEMI] = ACTIONS(103), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(115), + [anon_sym_case] = ACTIONS(117), + [anon_sym_default] = ACTIONS(119), + [anon_sym_while] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_break] = ACTIONS(129), + [anon_sym_continue] = ACTIONS(131), + [anon_sym_goto] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(135), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(137), + [sym_false] = ACTIONS(137), + [sym_null] = ACTIONS(137), + [sym_comment] = ACTIONS(3), + }, + [127] = { + [sym_compound_statement] = STATE(224), + [sym_labeled_statement] = STATE(224), + [sym_expression_statement] = STATE(224), + [sym_if_statement] = STATE(224), + [sym_switch_statement] = STATE(224), + [sym_case_statement] = STATE(224), + [sym_while_statement] = STATE(224), + [sym_do_statement] = STATE(224), + [sym_for_statement] = STATE(224), + [sym_return_statement] = STATE(224), + [sym_break_statement] = STATE(224), + [sym_continue_statement] = STATE(224), + [sym_goto_statement] = STATE(224), + [sym__expression] = STATE(615), + [sym_comma_expression] = STATE(1128), + [sym_conditional_expression] = STATE(615), + [sym_assignment_expression] = STATE(615), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(615), + [sym_binary_expression] = STATE(615), + [sym_update_expression] = STATE(615), + [sym_cast_expression] = STATE(615), + [sym_sizeof_expression] = STATE(615), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(615), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(615), + [sym_concatenated_string] = STATE(615), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(304), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(316), + [anon_sym_switch] = ACTIONS(318), + [anon_sym_case] = ACTIONS(320), + [anon_sym_default] = ACTIONS(322), + [anon_sym_while] = ACTIONS(324), + [anon_sym_do] = ACTIONS(326), + [anon_sym_for] = ACTIONS(328), + [anon_sym_return] = ACTIONS(330), + [anon_sym_break] = ACTIONS(332), + [anon_sym_continue] = ACTIONS(334), + [anon_sym_goto] = ACTIONS(336), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(338), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(340), + [sym_false] = ACTIONS(340), + [sym_null] = ACTIONS(340), + [sym_comment] = ACTIONS(3), + }, + [128] = { + [sym_compound_statement] = STATE(155), + [sym_labeled_statement] = STATE(155), + [sym_expression_statement] = STATE(155), + [sym_if_statement] = STATE(155), + [sym_switch_statement] = STATE(155), + [sym_case_statement] = STATE(155), + [sym_while_statement] = STATE(155), + [sym_do_statement] = STATE(155), + [sym_for_statement] = STATE(155), + [sym_return_statement] = STATE(155), + [sym_break_statement] = STATE(155), + [sym_continue_statement] = STATE(155), + [sym_goto_statement] = STATE(155), + [sym__expression] = STATE(575), + [sym_comma_expression] = STATE(1080), + [sym_conditional_expression] = STATE(575), + [sym_assignment_expression] = STATE(575), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(575), + [sym_binary_expression] = STATE(575), + [sym_update_expression] = STATE(575), + [sym_cast_expression] = STATE(575), + [sym_sizeof_expression] = STATE(575), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(952), + [anon_sym_SEMI] = ACTIONS(103), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(115), + [anon_sym_case] = ACTIONS(117), + [anon_sym_default] = ACTIONS(119), + [anon_sym_while] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_break] = ACTIONS(129), + [anon_sym_continue] = ACTIONS(131), + [anon_sym_goto] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(135), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(137), + [sym_false] = ACTIONS(137), + [sym_null] = ACTIONS(137), + [sym_comment] = ACTIONS(3), + }, + [129] = { + [sym_compound_statement] = STATE(148), + [sym_labeled_statement] = STATE(148), + [sym_expression_statement] = STATE(148), + [sym_if_statement] = STATE(148), + [sym_switch_statement] = STATE(148), + [sym_case_statement] = STATE(148), + [sym_while_statement] = STATE(148), + [sym_do_statement] = STATE(148), + [sym_for_statement] = STATE(148), + [sym_return_statement] = STATE(148), + [sym_break_statement] = STATE(148), + [sym_continue_statement] = STATE(148), + [sym_goto_statement] = STATE(148), + [sym__expression] = STATE(575), + [sym_comma_expression] = STATE(1080), + [sym_conditional_expression] = STATE(575), + [sym_assignment_expression] = STATE(575), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(575), + [sym_binary_expression] = STATE(575), + [sym_update_expression] = STATE(575), + [sym_cast_expression] = STATE(575), + [sym_sizeof_expression] = STATE(575), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(952), + [anon_sym_SEMI] = ACTIONS(103), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(115), + [anon_sym_case] = ACTIONS(117), + [anon_sym_default] = ACTIONS(119), + [anon_sym_while] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_break] = ACTIONS(129), + [anon_sym_continue] = ACTIONS(131), + [anon_sym_goto] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(135), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(137), + [sym_false] = ACTIONS(137), + [sym_null] = ACTIONS(137), + [sym_comment] = ACTIONS(3), + }, + [130] = { + [sym_compound_statement] = STATE(225), + [sym_labeled_statement] = STATE(225), + [sym_expression_statement] = STATE(225), + [sym_if_statement] = STATE(225), + [sym_switch_statement] = STATE(225), + [sym_case_statement] = STATE(225), + [sym_while_statement] = STATE(225), + [sym_do_statement] = STATE(225), + [sym_for_statement] = STATE(225), + [sym_return_statement] = STATE(225), + [sym_break_statement] = STATE(225), + [sym_continue_statement] = STATE(225), + [sym_goto_statement] = STATE(225), + [sym__expression] = STATE(615), + [sym_comma_expression] = STATE(1128), + [sym_conditional_expression] = STATE(615), + [sym_assignment_expression] = STATE(615), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(615), + [sym_binary_expression] = STATE(615), + [sym_update_expression] = STATE(615), + [sym_cast_expression] = STATE(615), + [sym_sizeof_expression] = STATE(615), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(615), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(615), + [sym_concatenated_string] = STATE(615), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(304), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(316), + [anon_sym_switch] = ACTIONS(318), + [anon_sym_case] = ACTIONS(320), + [anon_sym_default] = ACTIONS(322), + [anon_sym_while] = ACTIONS(324), + [anon_sym_do] = ACTIONS(326), + [anon_sym_for] = ACTIONS(328), + [anon_sym_return] = ACTIONS(330), + [anon_sym_break] = ACTIONS(332), + [anon_sym_continue] = ACTIONS(334), + [anon_sym_goto] = ACTIONS(336), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(338), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(340), + [sym_false] = ACTIONS(340), + [sym_null] = ACTIONS(340), + [sym_comment] = ACTIONS(3), + }, + [131] = { + [sym_compound_statement] = STATE(221), + [sym_labeled_statement] = STATE(221), + [sym_expression_statement] = STATE(221), + [sym_if_statement] = STATE(221), + [sym_switch_statement] = STATE(221), + [sym_case_statement] = STATE(221), + [sym_while_statement] = STATE(221), + [sym_do_statement] = STATE(221), + [sym_for_statement] = STATE(221), + [sym_return_statement] = STATE(221), + [sym_break_statement] = STATE(221), + [sym_continue_statement] = STATE(221), + [sym_goto_statement] = STATE(221), + [sym__expression] = STATE(594), + [sym_comma_expression] = STATE(1051), + [sym_conditional_expression] = STATE(594), + [sym_assignment_expression] = STATE(594), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(594), + [sym_binary_expression] = STATE(594), + [sym_update_expression] = STATE(594), + [sym_cast_expression] = STATE(594), + [sym_sizeof_expression] = STATE(594), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(594), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(594), + [sym_concatenated_string] = STATE(594), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(47), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_case] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_do] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_break] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_goto] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(77), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + }, + [132] = { + [sym_compound_statement] = STATE(207), + [sym_labeled_statement] = STATE(207), + [sym_expression_statement] = STATE(207), + [sym_if_statement] = STATE(207), + [sym_switch_statement] = STATE(207), + [sym_case_statement] = STATE(207), + [sym_while_statement] = STATE(207), + [sym_do_statement] = STATE(207), + [sym_for_statement] = STATE(207), + [sym_return_statement] = STATE(207), + [sym_break_statement] = STATE(207), + [sym_continue_statement] = STATE(207), + [sym_goto_statement] = STATE(207), + [sym__expression] = STATE(594), + [sym_comma_expression] = STATE(1051), + [sym_conditional_expression] = STATE(594), + [sym_assignment_expression] = STATE(594), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(594), + [sym_binary_expression] = STATE(594), + [sym_update_expression] = STATE(594), + [sym_cast_expression] = STATE(594), + [sym_sizeof_expression] = STATE(594), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(594), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(594), + [sym_concatenated_string] = STATE(594), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(47), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_case] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_do] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_break] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_goto] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(77), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + }, + [133] = { + [sym_compound_statement] = STATE(201), + [sym_labeled_statement] = STATE(201), + [sym_expression_statement] = STATE(201), + [sym_if_statement] = STATE(201), + [sym_switch_statement] = STATE(201), + [sym_case_statement] = STATE(201), + [sym_while_statement] = STATE(201), + [sym_do_statement] = STATE(201), + [sym_for_statement] = STATE(201), + [sym_return_statement] = STATE(201), + [sym_break_statement] = STATE(201), + [sym_continue_statement] = STATE(201), + [sym_goto_statement] = STATE(201), + [sym__expression] = STATE(594), + [sym_comma_expression] = STATE(1051), + [sym_conditional_expression] = STATE(594), + [sym_assignment_expression] = STATE(594), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(594), + [sym_binary_expression] = STATE(594), + [sym_update_expression] = STATE(594), + [sym_cast_expression] = STATE(594), + [sym_sizeof_expression] = STATE(594), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(594), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(594), + [sym_concatenated_string] = STATE(594), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(47), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_case] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_do] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_break] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_goto] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(77), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + }, + [134] = { + [sym_compound_statement] = STATE(226), + [sym_labeled_statement] = STATE(226), + [sym_expression_statement] = STATE(226), + [sym_if_statement] = STATE(226), + [sym_switch_statement] = STATE(226), + [sym_case_statement] = STATE(226), + [sym_while_statement] = STATE(226), + [sym_do_statement] = STATE(226), + [sym_for_statement] = STATE(226), + [sym_return_statement] = STATE(226), + [sym_break_statement] = STATE(226), + [sym_continue_statement] = STATE(226), + [sym_goto_statement] = STATE(226), + [sym__expression] = STATE(615), + [sym_comma_expression] = STATE(1128), + [sym_conditional_expression] = STATE(615), + [sym_assignment_expression] = STATE(615), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(615), + [sym_binary_expression] = STATE(615), + [sym_update_expression] = STATE(615), + [sym_cast_expression] = STATE(615), + [sym_sizeof_expression] = STATE(615), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(615), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(615), + [sym_concatenated_string] = STATE(615), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(304), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(316), + [anon_sym_switch] = ACTIONS(318), + [anon_sym_case] = ACTIONS(320), + [anon_sym_default] = ACTIONS(322), + [anon_sym_while] = ACTIONS(324), + [anon_sym_do] = ACTIONS(326), + [anon_sym_for] = ACTIONS(328), + [anon_sym_return] = ACTIONS(330), + [anon_sym_break] = ACTIONS(332), + [anon_sym_continue] = ACTIONS(334), + [anon_sym_goto] = ACTIONS(336), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(338), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(340), + [sym_false] = ACTIONS(340), + [sym_null] = ACTIONS(340), + [sym_comment] = ACTIONS(3), + }, + [135] = { + [sym_compound_statement] = STATE(168), + [sym_labeled_statement] = STATE(168), + [sym_expression_statement] = STATE(168), + [sym_if_statement] = STATE(168), + [sym_switch_statement] = STATE(168), + [sym_case_statement] = STATE(168), + [sym_while_statement] = STATE(168), + [sym_do_statement] = STATE(168), + [sym_for_statement] = STATE(168), + [sym_return_statement] = STATE(168), + [sym_break_statement] = STATE(168), + [sym_continue_statement] = STATE(168), + [sym_goto_statement] = STATE(168), + [sym__expression] = STATE(575), + [sym_comma_expression] = STATE(1080), + [sym_conditional_expression] = STATE(575), + [sym_assignment_expression] = STATE(575), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(575), + [sym_binary_expression] = STATE(575), + [sym_update_expression] = STATE(575), + [sym_cast_expression] = STATE(575), + [sym_sizeof_expression] = STATE(575), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(952), + [anon_sym_SEMI] = ACTIONS(103), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(115), + [anon_sym_case] = ACTIONS(117), + [anon_sym_default] = ACTIONS(119), + [anon_sym_while] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_break] = ACTIONS(129), + [anon_sym_continue] = ACTIONS(131), + [anon_sym_goto] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(135), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(137), + [sym_false] = ACTIONS(137), + [sym_null] = ACTIONS(137), + [sym_comment] = ACTIONS(3), + }, + [136] = { + [sym__expression] = STATE(479), + [sym_conditional_expression] = STATE(479), + [sym_assignment_expression] = STATE(479), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(479), + [sym_binary_expression] = STATE(479), + [sym_update_expression] = STATE(479), + [sym_cast_expression] = STATE(479), + [sym_sizeof_expression] = STATE(479), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(479), + [sym_parenthesized_expression] = STATE(505), + [sym_initializer_list] = STATE(502), + [sym_char_literal] = STATE(479), + [sym_concatenated_string] = STATE(479), + [sym_string_literal] = STATE(380), + [sym_identifier] = ACTIONS(958), + [anon_sym_COMMA] = ACTIONS(904), + [anon_sym_RPAREN] = ACTIONS(904), + [anon_sym_SEMI] = ACTIONS(904), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(908), + [anon_sym_RBRACE] = ACTIONS(904), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(904), + [anon_sym_RBRACK] = ACTIONS(904), + [anon_sym_COLON] = ACTIONS(904), + [anon_sym_QMARK] = ACTIONS(904), + [anon_sym_AMP] = ACTIONS(910), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(912), + [anon_sym_PERCENT] = ACTIONS(904), + [anon_sym_PIPE_PIPE] = ACTIONS(904), + [anon_sym_AMP_AMP] = ACTIONS(904), + [anon_sym_PIPE] = ACTIONS(912), + [anon_sym_CARET] = ACTIONS(904), + [anon_sym_EQ_EQ] = ACTIONS(904), + [anon_sym_BANG_EQ] = ACTIONS(904), + [anon_sym_GT] = ACTIONS(912), + [anon_sym_GT_EQ] = ACTIONS(904), + [anon_sym_LT_EQ] = ACTIONS(904), + [anon_sym_LT] = ACTIONS(912), + [anon_sym_LT_LT] = ACTIONS(904), + [anon_sym_GT_GT] = ACTIONS(904), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [anon_sym_DOT] = ACTIONS(912), + [anon_sym_DASH_GT] = ACTIONS(904), + [sym_number_literal] = ACTIONS(922), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(902), + [sym_false] = ACTIONS(902), + [sym_null] = ACTIONS(902), + [sym_comment] = ACTIONS(3), + }, + [137] = { + [sym_identifier] = ACTIONS(960), + [aux_sym_preproc_include_token1] = ACTIONS(960), + [aux_sym_preproc_def_token1] = ACTIONS(960), + [aux_sym_preproc_if_token1] = ACTIONS(960), + [aux_sym_preproc_if_token2] = ACTIONS(960), + [aux_sym_preproc_ifdef_token1] = ACTIONS(960), + [aux_sym_preproc_ifdef_token2] = ACTIONS(960), + [aux_sym_preproc_else_token1] = ACTIONS(960), + [aux_sym_preproc_elif_token1] = ACTIONS(960), + [sym_preproc_directive] = ACTIONS(960), + [anon_sym_SEMI] = ACTIONS(962), + [anon_sym_typedef] = ACTIONS(960), + [anon_sym_extern] = ACTIONS(960), + [anon_sym___attribute__] = ACTIONS(960), + [anon_sym_LPAREN2] = ACTIONS(962), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(962), + [anon_sym_static] = ACTIONS(960), + [anon_sym_auto] = ACTIONS(960), + [anon_sym_register] = ACTIONS(960), + [anon_sym_inline] = ACTIONS(960), + [anon_sym_const] = ACTIONS(960), + [anon_sym_volatile] = ACTIONS(960), + [anon_sym_restrict] = ACTIONS(960), + [anon_sym__Atomic] = ACTIONS(960), + [anon_sym_signed] = ACTIONS(960), + [anon_sym_unsigned] = ACTIONS(960), + [anon_sym_long] = ACTIONS(960), + [anon_sym_short] = ACTIONS(960), + [sym_primitive_type] = ACTIONS(960), + [anon_sym_enum] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(960), + [anon_sym_union] = ACTIONS(960), + [anon_sym_if] = ACTIONS(960), + [anon_sym_else] = ACTIONS(960), + [anon_sym_switch] = ACTIONS(960), + [anon_sym_case] = ACTIONS(960), + [anon_sym_default] = ACTIONS(960), + [anon_sym_while] = ACTIONS(960), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(960), + [anon_sym_return] = ACTIONS(960), + [anon_sym_break] = ACTIONS(960), + [anon_sym_continue] = ACTIONS(960), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(962), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(962), + [anon_sym_DASH] = ACTIONS(960), + [anon_sym_PLUS] = ACTIONS(960), + [anon_sym_DASH_DASH] = ACTIONS(962), + [anon_sym_PLUS_PLUS] = ACTIONS(962), + [anon_sym_sizeof] = ACTIONS(960), + [sym_number_literal] = ACTIONS(962), + [anon_sym_L_SQUOTE] = ACTIONS(962), + [anon_sym_u_SQUOTE] = ACTIONS(962), + [anon_sym_U_SQUOTE] = ACTIONS(962), + [anon_sym_u8_SQUOTE] = ACTIONS(962), + [anon_sym_SQUOTE] = ACTIONS(962), + [anon_sym_L_DQUOTE] = ACTIONS(962), + [anon_sym_u_DQUOTE] = ACTIONS(962), + [anon_sym_U_DQUOTE] = ACTIONS(962), + [anon_sym_u8_DQUOTE] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(962), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), + [sym_comment] = ACTIONS(3), + }, + [138] = { + [sym_identifier] = ACTIONS(964), + [aux_sym_preproc_include_token1] = ACTIONS(964), + [aux_sym_preproc_def_token1] = ACTIONS(964), + [aux_sym_preproc_if_token1] = ACTIONS(964), + [aux_sym_preproc_if_token2] = ACTIONS(964), + [aux_sym_preproc_ifdef_token1] = ACTIONS(964), + [aux_sym_preproc_ifdef_token2] = ACTIONS(964), + [aux_sym_preproc_else_token1] = ACTIONS(964), + [aux_sym_preproc_elif_token1] = ACTIONS(964), + [sym_preproc_directive] = ACTIONS(964), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_typedef] = ACTIONS(964), + [anon_sym_extern] = ACTIONS(964), + [anon_sym___attribute__] = ACTIONS(964), + [anon_sym_LPAREN2] = ACTIONS(966), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_static] = ACTIONS(964), + [anon_sym_auto] = ACTIONS(964), + [anon_sym_register] = ACTIONS(964), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_const] = ACTIONS(964), + [anon_sym_volatile] = ACTIONS(964), + [anon_sym_restrict] = ACTIONS(964), + [anon_sym__Atomic] = ACTIONS(964), + [anon_sym_signed] = ACTIONS(964), + [anon_sym_unsigned] = ACTIONS(964), + [anon_sym_long] = ACTIONS(964), + [anon_sym_short] = ACTIONS(964), + [sym_primitive_type] = ACTIONS(964), + [anon_sym_enum] = ACTIONS(964), + [anon_sym_struct] = ACTIONS(964), + [anon_sym_union] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_else] = ACTIONS(964), + [anon_sym_switch] = ACTIONS(964), + [anon_sym_case] = ACTIONS(964), + [anon_sym_default] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_do] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_goto] = ACTIONS(964), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_sizeof] = ACTIONS(964), + [sym_number_literal] = ACTIONS(966), + [anon_sym_L_SQUOTE] = ACTIONS(966), + [anon_sym_u_SQUOTE] = ACTIONS(966), + [anon_sym_U_SQUOTE] = ACTIONS(966), + [anon_sym_u8_SQUOTE] = ACTIONS(966), + [anon_sym_SQUOTE] = ACTIONS(966), + [anon_sym_L_DQUOTE] = ACTIONS(966), + [anon_sym_u_DQUOTE] = ACTIONS(966), + [anon_sym_U_DQUOTE] = ACTIONS(966), + [anon_sym_u8_DQUOTE] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym_true] = ACTIONS(964), + [sym_false] = ACTIONS(964), + [sym_null] = ACTIONS(964), + [sym_comment] = ACTIONS(3), + }, + [139] = { + [sym_identifier] = ACTIONS(968), + [aux_sym_preproc_include_token1] = ACTIONS(968), + [aux_sym_preproc_def_token1] = ACTIONS(968), + [aux_sym_preproc_if_token1] = ACTIONS(968), + [aux_sym_preproc_if_token2] = ACTIONS(968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(968), + [aux_sym_preproc_else_token1] = ACTIONS(968), + [aux_sym_preproc_elif_token1] = ACTIONS(968), + [sym_preproc_directive] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_typedef] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(968), + [anon_sym___attribute__] = ACTIONS(968), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_LBRACE] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(970), + [anon_sym_static] = ACTIONS(968), + [anon_sym_auto] = ACTIONS(968), + [anon_sym_register] = ACTIONS(968), + [anon_sym_inline] = ACTIONS(968), + [anon_sym_const] = ACTIONS(968), + [anon_sym_volatile] = ACTIONS(968), + [anon_sym_restrict] = ACTIONS(968), + [anon_sym__Atomic] = ACTIONS(968), + [anon_sym_signed] = ACTIONS(968), + [anon_sym_unsigned] = ACTIONS(968), + [anon_sym_long] = ACTIONS(968), + [anon_sym_short] = ACTIONS(968), + [sym_primitive_type] = ACTIONS(968), + [anon_sym_enum] = ACTIONS(968), + [anon_sym_struct] = ACTIONS(968), + [anon_sym_union] = ACTIONS(968), + [anon_sym_if] = ACTIONS(968), + [anon_sym_else] = ACTIONS(968), + [anon_sym_switch] = ACTIONS(968), + [anon_sym_case] = ACTIONS(968), + [anon_sym_default] = ACTIONS(968), + [anon_sym_while] = ACTIONS(968), + [anon_sym_do] = ACTIONS(968), + [anon_sym_for] = ACTIONS(968), + [anon_sym_return] = ACTIONS(968), + [anon_sym_break] = ACTIONS(968), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_BANG] = ACTIONS(970), + [anon_sym_TILDE] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_sizeof] = ACTIONS(968), + [sym_number_literal] = ACTIONS(970), + [anon_sym_L_SQUOTE] = ACTIONS(970), + [anon_sym_u_SQUOTE] = ACTIONS(970), + [anon_sym_U_SQUOTE] = ACTIONS(970), + [anon_sym_u8_SQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(970), + [anon_sym_L_DQUOTE] = ACTIONS(970), + [anon_sym_u_DQUOTE] = ACTIONS(970), + [anon_sym_U_DQUOTE] = ACTIONS(970), + [anon_sym_u8_DQUOTE] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(970), + [sym_true] = ACTIONS(968), + [sym_false] = ACTIONS(968), + [sym_null] = ACTIONS(968), + [sym_comment] = ACTIONS(3), + }, + [140] = { + [sym_identifier] = ACTIONS(972), + [aux_sym_preproc_include_token1] = ACTIONS(972), + [aux_sym_preproc_def_token1] = ACTIONS(972), + [aux_sym_preproc_if_token1] = ACTIONS(972), + [aux_sym_preproc_if_token2] = ACTIONS(972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(972), + [aux_sym_preproc_else_token1] = ACTIONS(972), + [aux_sym_preproc_elif_token1] = ACTIONS(972), + [sym_preproc_directive] = ACTIONS(972), + [anon_sym_SEMI] = ACTIONS(974), + [anon_sym_typedef] = ACTIONS(972), + [anon_sym_extern] = ACTIONS(972), + [anon_sym___attribute__] = ACTIONS(972), + [anon_sym_LPAREN2] = ACTIONS(974), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_STAR] = ACTIONS(974), + [anon_sym_static] = ACTIONS(972), + [anon_sym_auto] = ACTIONS(972), + [anon_sym_register] = ACTIONS(972), + [anon_sym_inline] = ACTIONS(972), + [anon_sym_const] = ACTIONS(972), + [anon_sym_volatile] = ACTIONS(972), + [anon_sym_restrict] = ACTIONS(972), + [anon_sym__Atomic] = ACTIONS(972), + [anon_sym_signed] = ACTIONS(972), + [anon_sym_unsigned] = ACTIONS(972), + [anon_sym_long] = ACTIONS(972), + [anon_sym_short] = ACTIONS(972), + [sym_primitive_type] = ACTIONS(972), + [anon_sym_enum] = ACTIONS(972), + [anon_sym_struct] = ACTIONS(972), + [anon_sym_union] = ACTIONS(972), + [anon_sym_if] = ACTIONS(972), + [anon_sym_else] = ACTIONS(972), + [anon_sym_switch] = ACTIONS(972), + [anon_sym_case] = ACTIONS(972), + [anon_sym_default] = ACTIONS(972), + [anon_sym_while] = ACTIONS(972), + [anon_sym_do] = ACTIONS(972), + [anon_sym_for] = ACTIONS(972), + [anon_sym_return] = ACTIONS(972), + [anon_sym_break] = ACTIONS(972), + [anon_sym_continue] = ACTIONS(972), + [anon_sym_goto] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(974), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(974), + [anon_sym_sizeof] = ACTIONS(972), + [sym_number_literal] = ACTIONS(974), + [anon_sym_L_SQUOTE] = ACTIONS(974), + [anon_sym_u_SQUOTE] = ACTIONS(974), + [anon_sym_U_SQUOTE] = ACTIONS(974), + [anon_sym_u8_SQUOTE] = ACTIONS(974), + [anon_sym_SQUOTE] = ACTIONS(974), + [anon_sym_L_DQUOTE] = ACTIONS(974), + [anon_sym_u_DQUOTE] = ACTIONS(974), + [anon_sym_U_DQUOTE] = ACTIONS(974), + [anon_sym_u8_DQUOTE] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(974), + [sym_true] = ACTIONS(972), + [sym_false] = ACTIONS(972), + [sym_null] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + }, + [141] = { + [sym_identifier] = ACTIONS(976), + [aux_sym_preproc_include_token1] = ACTIONS(976), + [aux_sym_preproc_def_token1] = ACTIONS(976), + [aux_sym_preproc_if_token1] = ACTIONS(976), + [aux_sym_preproc_if_token2] = ACTIONS(976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(976), + [aux_sym_preproc_else_token1] = ACTIONS(976), + [aux_sym_preproc_elif_token1] = ACTIONS(976), + [sym_preproc_directive] = ACTIONS(976), + [anon_sym_SEMI] = ACTIONS(978), + [anon_sym_typedef] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(976), + [anon_sym___attribute__] = ACTIONS(976), + [anon_sym_LPAREN2] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(978), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_static] = ACTIONS(976), + [anon_sym_auto] = ACTIONS(976), + [anon_sym_register] = ACTIONS(976), + [anon_sym_inline] = ACTIONS(976), + [anon_sym_const] = ACTIONS(976), + [anon_sym_volatile] = ACTIONS(976), + [anon_sym_restrict] = ACTIONS(976), + [anon_sym__Atomic] = ACTIONS(976), + [anon_sym_signed] = ACTIONS(976), + [anon_sym_unsigned] = ACTIONS(976), + [anon_sym_long] = ACTIONS(976), + [anon_sym_short] = ACTIONS(976), + [sym_primitive_type] = ACTIONS(976), + [anon_sym_enum] = ACTIONS(976), + [anon_sym_struct] = ACTIONS(976), + [anon_sym_union] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_else] = ACTIONS(976), + [anon_sym_switch] = ACTIONS(976), + [anon_sym_case] = ACTIONS(976), + [anon_sym_default] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_do] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_goto] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_PLUS_PLUS] = ACTIONS(978), + [anon_sym_sizeof] = ACTIONS(976), + [sym_number_literal] = ACTIONS(978), + [anon_sym_L_SQUOTE] = ACTIONS(978), + [anon_sym_u_SQUOTE] = ACTIONS(978), + [anon_sym_U_SQUOTE] = ACTIONS(978), + [anon_sym_u8_SQUOTE] = ACTIONS(978), + [anon_sym_SQUOTE] = ACTIONS(978), + [anon_sym_L_DQUOTE] = ACTIONS(978), + [anon_sym_u_DQUOTE] = ACTIONS(978), + [anon_sym_U_DQUOTE] = ACTIONS(978), + [anon_sym_u8_DQUOTE] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym_true] = ACTIONS(976), + [sym_false] = ACTIONS(976), + [sym_null] = ACTIONS(976), + [sym_comment] = ACTIONS(3), + }, + [142] = { + [sym_identifier] = ACTIONS(980), + [aux_sym_preproc_include_token1] = ACTIONS(980), + [aux_sym_preproc_def_token1] = ACTIONS(980), + [aux_sym_preproc_if_token1] = ACTIONS(980), + [aux_sym_preproc_if_token2] = ACTIONS(980), + [aux_sym_preproc_ifdef_token1] = ACTIONS(980), + [aux_sym_preproc_ifdef_token2] = ACTIONS(980), + [aux_sym_preproc_else_token1] = ACTIONS(980), + [aux_sym_preproc_elif_token1] = ACTIONS(980), + [sym_preproc_directive] = ACTIONS(980), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_typedef] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym___attribute__] = ACTIONS(980), + [anon_sym_LPAREN2] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_STAR] = ACTIONS(982), + [anon_sym_static] = ACTIONS(980), + [anon_sym_auto] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_inline] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [anon_sym_volatile] = ACTIONS(980), + [anon_sym_restrict] = ACTIONS(980), + [anon_sym__Atomic] = ACTIONS(980), + [anon_sym_signed] = ACTIONS(980), + [anon_sym_unsigned] = ACTIONS(980), + [anon_sym_long] = ACTIONS(980), + [anon_sym_short] = ACTIONS(980), + [sym_primitive_type] = ACTIONS(980), + [anon_sym_enum] = ACTIONS(980), + [anon_sym_struct] = ACTIONS(980), + [anon_sym_union] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_else] = ACTIONS(980), + [anon_sym_switch] = ACTIONS(980), + [anon_sym_case] = ACTIONS(980), + [anon_sym_default] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_goto] = ACTIONS(980), + [anon_sym_AMP] = ACTIONS(982), + [anon_sym_BANG] = ACTIONS(982), + [anon_sym_TILDE] = ACTIONS(982), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(982), + [anon_sym_PLUS_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(980), + [sym_number_literal] = ACTIONS(982), + [anon_sym_L_SQUOTE] = ACTIONS(982), + [anon_sym_u_SQUOTE] = ACTIONS(982), + [anon_sym_U_SQUOTE] = ACTIONS(982), + [anon_sym_u8_SQUOTE] = ACTIONS(982), + [anon_sym_SQUOTE] = ACTIONS(982), + [anon_sym_L_DQUOTE] = ACTIONS(982), + [anon_sym_u_DQUOTE] = ACTIONS(982), + [anon_sym_U_DQUOTE] = ACTIONS(982), + [anon_sym_u8_DQUOTE] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym_true] = ACTIONS(980), + [sym_false] = ACTIONS(980), + [sym_null] = ACTIONS(980), + [sym_comment] = ACTIONS(3), + }, + [143] = { + [sym_identifier] = ACTIONS(984), + [aux_sym_preproc_include_token1] = ACTIONS(984), + [aux_sym_preproc_def_token1] = ACTIONS(984), + [aux_sym_preproc_if_token1] = ACTIONS(984), + [aux_sym_preproc_if_token2] = ACTIONS(984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(984), + [aux_sym_preproc_else_token1] = ACTIONS(984), + [aux_sym_preproc_elif_token1] = ACTIONS(984), + [sym_preproc_directive] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_typedef] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym___attribute__] = ACTIONS(984), + [anon_sym_LPAREN2] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_static] = ACTIONS(984), + [anon_sym_auto] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_inline] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [anon_sym_volatile] = ACTIONS(984), + [anon_sym_restrict] = ACTIONS(984), + [anon_sym__Atomic] = ACTIONS(984), + [anon_sym_signed] = ACTIONS(984), + [anon_sym_unsigned] = ACTIONS(984), + [anon_sym_long] = ACTIONS(984), + [anon_sym_short] = ACTIONS(984), + [sym_primitive_type] = ACTIONS(984), + [anon_sym_enum] = ACTIONS(984), + [anon_sym_struct] = ACTIONS(984), + [anon_sym_union] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_switch] = ACTIONS(984), + [anon_sym_case] = ACTIONS(984), + [anon_sym_default] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_goto] = ACTIONS(984), + [anon_sym_AMP] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_TILDE] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym_PLUS_PLUS] = ACTIONS(986), + [anon_sym_sizeof] = ACTIONS(984), + [sym_number_literal] = ACTIONS(986), + [anon_sym_L_SQUOTE] = ACTIONS(986), + [anon_sym_u_SQUOTE] = ACTIONS(986), + [anon_sym_U_SQUOTE] = ACTIONS(986), + [anon_sym_u8_SQUOTE] = ACTIONS(986), + [anon_sym_SQUOTE] = ACTIONS(986), + [anon_sym_L_DQUOTE] = ACTIONS(986), + [anon_sym_u_DQUOTE] = ACTIONS(986), + [anon_sym_U_DQUOTE] = ACTIONS(986), + [anon_sym_u8_DQUOTE] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym_true] = ACTIONS(984), + [sym_false] = ACTIONS(984), + [sym_null] = ACTIONS(984), + [sym_comment] = ACTIONS(3), + }, + [144] = { + [sym_identifier] = ACTIONS(988), + [aux_sym_preproc_include_token1] = ACTIONS(988), + [aux_sym_preproc_def_token1] = ACTIONS(988), + [aux_sym_preproc_if_token1] = ACTIONS(988), + [aux_sym_preproc_if_token2] = ACTIONS(988), + [aux_sym_preproc_ifdef_token1] = ACTIONS(988), + [aux_sym_preproc_ifdef_token2] = ACTIONS(988), + [aux_sym_preproc_else_token1] = ACTIONS(988), + [aux_sym_preproc_elif_token1] = ACTIONS(988), + [sym_preproc_directive] = ACTIONS(988), + [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_typedef] = ACTIONS(988), + [anon_sym_extern] = ACTIONS(988), + [anon_sym___attribute__] = ACTIONS(988), + [anon_sym_LPAREN2] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(990), + [anon_sym_STAR] = ACTIONS(990), + [anon_sym_static] = ACTIONS(988), + [anon_sym_auto] = ACTIONS(988), + [anon_sym_register] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(988), + [anon_sym_const] = ACTIONS(988), + [anon_sym_volatile] = ACTIONS(988), + [anon_sym_restrict] = ACTIONS(988), + [anon_sym__Atomic] = ACTIONS(988), + [anon_sym_signed] = ACTIONS(988), + [anon_sym_unsigned] = ACTIONS(988), + [anon_sym_long] = ACTIONS(988), + [anon_sym_short] = ACTIONS(988), + [sym_primitive_type] = ACTIONS(988), + [anon_sym_enum] = ACTIONS(988), + [anon_sym_struct] = ACTIONS(988), + [anon_sym_union] = ACTIONS(988), + [anon_sym_if] = ACTIONS(988), + [anon_sym_else] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(988), + [anon_sym_case] = ACTIONS(988), + [anon_sym_default] = ACTIONS(988), + [anon_sym_while] = ACTIONS(988), + [anon_sym_do] = ACTIONS(988), + [anon_sym_for] = ACTIONS(988), + [anon_sym_return] = ACTIONS(988), + [anon_sym_break] = ACTIONS(988), + [anon_sym_continue] = ACTIONS(988), + [anon_sym_goto] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(990), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(990), + [anon_sym_DASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_sizeof] = ACTIONS(988), + [sym_number_literal] = ACTIONS(990), + [anon_sym_L_SQUOTE] = ACTIONS(990), + [anon_sym_u_SQUOTE] = ACTIONS(990), + [anon_sym_U_SQUOTE] = ACTIONS(990), + [anon_sym_u8_SQUOTE] = ACTIONS(990), + [anon_sym_SQUOTE] = ACTIONS(990), + [anon_sym_L_DQUOTE] = ACTIONS(990), + [anon_sym_u_DQUOTE] = ACTIONS(990), + [anon_sym_U_DQUOTE] = ACTIONS(990), + [anon_sym_u8_DQUOTE] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym_true] = ACTIONS(988), + [sym_false] = ACTIONS(988), + [sym_null] = ACTIONS(988), + [sym_comment] = ACTIONS(3), + }, + [145] = { + [sym_identifier] = ACTIONS(992), + [aux_sym_preproc_include_token1] = ACTIONS(992), + [aux_sym_preproc_def_token1] = ACTIONS(992), + [aux_sym_preproc_if_token1] = ACTIONS(992), + [aux_sym_preproc_if_token2] = ACTIONS(992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(992), + [aux_sym_preproc_else_token1] = ACTIONS(992), + [aux_sym_preproc_elif_token1] = ACTIONS(992), + [sym_preproc_directive] = ACTIONS(992), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_typedef] = ACTIONS(992), + [anon_sym_extern] = ACTIONS(992), + [anon_sym___attribute__] = ACTIONS(992), + [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_STAR] = ACTIONS(994), + [anon_sym_static] = ACTIONS(992), + [anon_sym_auto] = ACTIONS(992), + [anon_sym_register] = ACTIONS(992), + [anon_sym_inline] = ACTIONS(992), + [anon_sym_const] = ACTIONS(992), + [anon_sym_volatile] = ACTIONS(992), + [anon_sym_restrict] = ACTIONS(992), + [anon_sym__Atomic] = ACTIONS(992), + [anon_sym_signed] = ACTIONS(992), + [anon_sym_unsigned] = ACTIONS(992), + [anon_sym_long] = ACTIONS(992), + [anon_sym_short] = ACTIONS(992), + [sym_primitive_type] = ACTIONS(992), + [anon_sym_enum] = ACTIONS(992), + [anon_sym_struct] = ACTIONS(992), + [anon_sym_union] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_else] = ACTIONS(992), + [anon_sym_switch] = ACTIONS(992), + [anon_sym_case] = ACTIONS(992), + [anon_sym_default] = ACTIONS(992), + [anon_sym_while] = ACTIONS(992), + [anon_sym_do] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_return] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_goto] = ACTIONS(992), + [anon_sym_AMP] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_sizeof] = ACTIONS(992), + [sym_number_literal] = ACTIONS(994), + [anon_sym_L_SQUOTE] = ACTIONS(994), + [anon_sym_u_SQUOTE] = ACTIONS(994), + [anon_sym_U_SQUOTE] = ACTIONS(994), + [anon_sym_u8_SQUOTE] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(994), + [anon_sym_L_DQUOTE] = ACTIONS(994), + [anon_sym_u_DQUOTE] = ACTIONS(994), + [anon_sym_U_DQUOTE] = ACTIONS(994), + [anon_sym_u8_DQUOTE] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(994), + [sym_true] = ACTIONS(992), + [sym_false] = ACTIONS(992), + [sym_null] = ACTIONS(992), + [sym_comment] = ACTIONS(3), + }, + [146] = { + [sym_identifier] = ACTIONS(996), + [aux_sym_preproc_include_token1] = ACTIONS(996), + [aux_sym_preproc_def_token1] = ACTIONS(996), + [aux_sym_preproc_if_token1] = ACTIONS(996), + [aux_sym_preproc_if_token2] = ACTIONS(996), + [aux_sym_preproc_ifdef_token1] = ACTIONS(996), + [aux_sym_preproc_ifdef_token2] = ACTIONS(996), + [aux_sym_preproc_else_token1] = ACTIONS(996), + [aux_sym_preproc_elif_token1] = ACTIONS(996), + [sym_preproc_directive] = ACTIONS(996), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_typedef] = ACTIONS(996), + [anon_sym_extern] = ACTIONS(996), + [anon_sym___attribute__] = ACTIONS(996), + [anon_sym_LPAREN2] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_static] = ACTIONS(996), + [anon_sym_auto] = ACTIONS(996), + [anon_sym_register] = ACTIONS(996), + [anon_sym_inline] = ACTIONS(996), + [anon_sym_const] = ACTIONS(996), + [anon_sym_volatile] = ACTIONS(996), + [anon_sym_restrict] = ACTIONS(996), + [anon_sym__Atomic] = ACTIONS(996), + [anon_sym_signed] = ACTIONS(996), + [anon_sym_unsigned] = ACTIONS(996), + [anon_sym_long] = ACTIONS(996), + [anon_sym_short] = ACTIONS(996), + [sym_primitive_type] = ACTIONS(996), + [anon_sym_enum] = ACTIONS(996), + [anon_sym_struct] = ACTIONS(996), + [anon_sym_union] = ACTIONS(996), + [anon_sym_if] = ACTIONS(996), + [anon_sym_else] = ACTIONS(996), + [anon_sym_switch] = ACTIONS(996), + [anon_sym_case] = ACTIONS(996), + [anon_sym_default] = ACTIONS(996), + [anon_sym_while] = ACTIONS(996), + [anon_sym_do] = ACTIONS(996), + [anon_sym_for] = ACTIONS(996), + [anon_sym_return] = ACTIONS(996), + [anon_sym_break] = ACTIONS(996), + [anon_sym_continue] = ACTIONS(996), + [anon_sym_goto] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_PLUS_PLUS] = ACTIONS(998), + [anon_sym_sizeof] = ACTIONS(996), + [sym_number_literal] = ACTIONS(998), + [anon_sym_L_SQUOTE] = ACTIONS(998), + [anon_sym_u_SQUOTE] = ACTIONS(998), + [anon_sym_U_SQUOTE] = ACTIONS(998), + [anon_sym_u8_SQUOTE] = ACTIONS(998), + [anon_sym_SQUOTE] = ACTIONS(998), + [anon_sym_L_DQUOTE] = ACTIONS(998), + [anon_sym_u_DQUOTE] = ACTIONS(998), + [anon_sym_U_DQUOTE] = ACTIONS(998), + [anon_sym_u8_DQUOTE] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym_true] = ACTIONS(996), + [sym_false] = ACTIONS(996), + [sym_null] = ACTIONS(996), + [sym_comment] = ACTIONS(3), + }, + [147] = { + [sym_identifier] = ACTIONS(1000), + [aux_sym_preproc_include_token1] = ACTIONS(1000), + [aux_sym_preproc_def_token1] = ACTIONS(1000), + [aux_sym_preproc_if_token1] = ACTIONS(1000), + [aux_sym_preproc_if_token2] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), + [aux_sym_preproc_else_token1] = ACTIONS(1000), + [aux_sym_preproc_elif_token1] = ACTIONS(1000), + [sym_preproc_directive] = ACTIONS(1000), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_typedef] = ACTIONS(1000), + [anon_sym_extern] = ACTIONS(1000), + [anon_sym___attribute__] = ACTIONS(1000), + [anon_sym_LPAREN2] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1002), + [anon_sym_static] = ACTIONS(1000), + [anon_sym_auto] = ACTIONS(1000), + [anon_sym_register] = ACTIONS(1000), + [anon_sym_inline] = ACTIONS(1000), + [anon_sym_const] = ACTIONS(1000), + [anon_sym_volatile] = ACTIONS(1000), + [anon_sym_restrict] = ACTIONS(1000), + [anon_sym__Atomic] = ACTIONS(1000), + [anon_sym_signed] = ACTIONS(1000), + [anon_sym_unsigned] = ACTIONS(1000), + [anon_sym_long] = ACTIONS(1000), + [anon_sym_short] = ACTIONS(1000), + [sym_primitive_type] = ACTIONS(1000), + [anon_sym_enum] = ACTIONS(1000), + [anon_sym_struct] = ACTIONS(1000), + [anon_sym_union] = ACTIONS(1000), + [anon_sym_if] = ACTIONS(1000), + [anon_sym_else] = ACTIONS(1000), + [anon_sym_switch] = ACTIONS(1000), + [anon_sym_case] = ACTIONS(1000), + [anon_sym_default] = ACTIONS(1000), + [anon_sym_while] = ACTIONS(1000), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_for] = ACTIONS(1000), + [anon_sym_return] = ACTIONS(1000), + [anon_sym_break] = ACTIONS(1000), + [anon_sym_continue] = ACTIONS(1000), + [anon_sym_goto] = ACTIONS(1000), + [anon_sym_AMP] = ACTIONS(1002), + [anon_sym_BANG] = ACTIONS(1002), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1000), + [anon_sym_PLUS] = ACTIONS(1000), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_sizeof] = ACTIONS(1000), + [sym_number_literal] = ACTIONS(1002), + [anon_sym_L_SQUOTE] = ACTIONS(1002), + [anon_sym_u_SQUOTE] = ACTIONS(1002), + [anon_sym_U_SQUOTE] = ACTIONS(1002), + [anon_sym_u8_SQUOTE] = ACTIONS(1002), + [anon_sym_SQUOTE] = ACTIONS(1002), + [anon_sym_L_DQUOTE] = ACTIONS(1002), + [anon_sym_u_DQUOTE] = ACTIONS(1002), + [anon_sym_U_DQUOTE] = ACTIONS(1002), + [anon_sym_u8_DQUOTE] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym_true] = ACTIONS(1000), + [sym_false] = ACTIONS(1000), + [sym_null] = ACTIONS(1000), + [sym_comment] = ACTIONS(3), + }, + [148] = { + [sym_identifier] = ACTIONS(1004), + [aux_sym_preproc_include_token1] = ACTIONS(1004), + [aux_sym_preproc_def_token1] = ACTIONS(1004), + [aux_sym_preproc_if_token1] = ACTIONS(1004), + [aux_sym_preproc_if_token2] = ACTIONS(1004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1004), + [aux_sym_preproc_else_token1] = ACTIONS(1004), + [aux_sym_preproc_elif_token1] = ACTIONS(1004), + [sym_preproc_directive] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym_typedef] = ACTIONS(1004), + [anon_sym_extern] = ACTIONS(1004), + [anon_sym___attribute__] = ACTIONS(1004), + [anon_sym_LPAREN2] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_static] = ACTIONS(1004), + [anon_sym_auto] = ACTIONS(1004), + [anon_sym_register] = ACTIONS(1004), + [anon_sym_inline] = ACTIONS(1004), + [anon_sym_const] = ACTIONS(1004), + [anon_sym_volatile] = ACTIONS(1004), + [anon_sym_restrict] = ACTIONS(1004), + [anon_sym__Atomic] = ACTIONS(1004), + [anon_sym_signed] = ACTIONS(1004), + [anon_sym_unsigned] = ACTIONS(1004), + [anon_sym_long] = ACTIONS(1004), + [anon_sym_short] = ACTIONS(1004), + [sym_primitive_type] = ACTIONS(1004), + [anon_sym_enum] = ACTIONS(1004), + [anon_sym_struct] = ACTIONS(1004), + [anon_sym_union] = ACTIONS(1004), + [anon_sym_if] = ACTIONS(1004), + [anon_sym_else] = ACTIONS(1004), + [anon_sym_switch] = ACTIONS(1004), + [anon_sym_case] = ACTIONS(1004), + [anon_sym_default] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(1004), + [anon_sym_do] = ACTIONS(1004), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_return] = ACTIONS(1004), + [anon_sym_break] = ACTIONS(1004), + [anon_sym_continue] = ACTIONS(1004), + [anon_sym_goto] = ACTIONS(1004), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1004), + [sym_number_literal] = ACTIONS(1006), + [anon_sym_L_SQUOTE] = ACTIONS(1006), + [anon_sym_u_SQUOTE] = ACTIONS(1006), + [anon_sym_U_SQUOTE] = ACTIONS(1006), + [anon_sym_u8_SQUOTE] = ACTIONS(1006), + [anon_sym_SQUOTE] = ACTIONS(1006), + [anon_sym_L_DQUOTE] = ACTIONS(1006), + [anon_sym_u_DQUOTE] = ACTIONS(1006), + [anon_sym_U_DQUOTE] = ACTIONS(1006), + [anon_sym_u8_DQUOTE] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym_true] = ACTIONS(1004), + [sym_false] = ACTIONS(1004), + [sym_null] = ACTIONS(1004), + [sym_comment] = ACTIONS(3), + }, + [149] = { + [sym_identifier] = ACTIONS(1008), + [aux_sym_preproc_include_token1] = ACTIONS(1008), + [aux_sym_preproc_def_token1] = ACTIONS(1008), + [aux_sym_preproc_if_token1] = ACTIONS(1008), + [aux_sym_preproc_if_token2] = ACTIONS(1008), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1008), + [aux_sym_preproc_else_token1] = ACTIONS(1008), + [aux_sym_preproc_elif_token1] = ACTIONS(1008), + [sym_preproc_directive] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_typedef] = ACTIONS(1008), + [anon_sym_extern] = ACTIONS(1008), + [anon_sym___attribute__] = ACTIONS(1008), + [anon_sym_LPAREN2] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_static] = ACTIONS(1008), + [anon_sym_auto] = ACTIONS(1008), + [anon_sym_register] = ACTIONS(1008), + [anon_sym_inline] = ACTIONS(1008), + [anon_sym_const] = ACTIONS(1008), + [anon_sym_volatile] = ACTIONS(1008), + [anon_sym_restrict] = ACTIONS(1008), + [anon_sym__Atomic] = ACTIONS(1008), + [anon_sym_signed] = ACTIONS(1008), + [anon_sym_unsigned] = ACTIONS(1008), + [anon_sym_long] = ACTIONS(1008), + [anon_sym_short] = ACTIONS(1008), + [sym_primitive_type] = ACTIONS(1008), + [anon_sym_enum] = ACTIONS(1008), + [anon_sym_struct] = ACTIONS(1008), + [anon_sym_union] = ACTIONS(1008), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_else] = ACTIONS(1008), + [anon_sym_switch] = ACTIONS(1008), + [anon_sym_case] = ACTIONS(1008), + [anon_sym_default] = ACTIONS(1008), + [anon_sym_while] = ACTIONS(1008), + [anon_sym_do] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1008), + [anon_sym_return] = ACTIONS(1008), + [anon_sym_break] = ACTIONS(1008), + [anon_sym_continue] = ACTIONS(1008), + [anon_sym_goto] = ACTIONS(1008), + [anon_sym_AMP] = ACTIONS(1010), + [anon_sym_BANG] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_sizeof] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(1010), + [anon_sym_L_SQUOTE] = ACTIONS(1010), + [anon_sym_u_SQUOTE] = ACTIONS(1010), + [anon_sym_U_SQUOTE] = ACTIONS(1010), + [anon_sym_u8_SQUOTE] = ACTIONS(1010), + [anon_sym_SQUOTE] = ACTIONS(1010), + [anon_sym_L_DQUOTE] = ACTIONS(1010), + [anon_sym_u_DQUOTE] = ACTIONS(1010), + [anon_sym_U_DQUOTE] = ACTIONS(1010), + [anon_sym_u8_DQUOTE] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym_true] = ACTIONS(1008), + [sym_false] = ACTIONS(1008), + [sym_null] = ACTIONS(1008), + [sym_comment] = ACTIONS(3), + }, + [150] = { + [sym_identifier] = ACTIONS(1012), + [aux_sym_preproc_include_token1] = ACTIONS(1012), + [aux_sym_preproc_def_token1] = ACTIONS(1012), + [aux_sym_preproc_if_token1] = ACTIONS(1012), + [aux_sym_preproc_if_token2] = ACTIONS(1012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1012), + [aux_sym_preproc_else_token1] = ACTIONS(1012), + [aux_sym_preproc_elif_token1] = ACTIONS(1012), + [sym_preproc_directive] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1014), + [anon_sym_typedef] = ACTIONS(1012), + [anon_sym_extern] = ACTIONS(1012), + [anon_sym___attribute__] = ACTIONS(1012), + [anon_sym_LPAREN2] = ACTIONS(1014), + [anon_sym_LBRACE] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1014), + [anon_sym_static] = ACTIONS(1012), + [anon_sym_auto] = ACTIONS(1012), + [anon_sym_register] = ACTIONS(1012), + [anon_sym_inline] = ACTIONS(1012), + [anon_sym_const] = ACTIONS(1012), + [anon_sym_volatile] = ACTIONS(1012), + [anon_sym_restrict] = ACTIONS(1012), + [anon_sym__Atomic] = ACTIONS(1012), + [anon_sym_signed] = ACTIONS(1012), + [anon_sym_unsigned] = ACTIONS(1012), + [anon_sym_long] = ACTIONS(1012), + [anon_sym_short] = ACTIONS(1012), + [sym_primitive_type] = ACTIONS(1012), + [anon_sym_enum] = ACTIONS(1012), + [anon_sym_struct] = ACTIONS(1012), + [anon_sym_union] = ACTIONS(1012), + [anon_sym_if] = ACTIONS(1012), + [anon_sym_else] = ACTIONS(1012), + [anon_sym_switch] = ACTIONS(1012), + [anon_sym_case] = ACTIONS(1012), + [anon_sym_default] = ACTIONS(1012), + [anon_sym_while] = ACTIONS(1012), + [anon_sym_do] = ACTIONS(1012), + [anon_sym_for] = ACTIONS(1012), + [anon_sym_return] = ACTIONS(1012), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_continue] = ACTIONS(1012), + [anon_sym_goto] = ACTIONS(1012), + [anon_sym_AMP] = ACTIONS(1014), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_TILDE] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1012), + [anon_sym_PLUS] = ACTIONS(1012), + [anon_sym_DASH_DASH] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_sizeof] = ACTIONS(1012), + [sym_number_literal] = ACTIONS(1014), + [anon_sym_L_SQUOTE] = ACTIONS(1014), + [anon_sym_u_SQUOTE] = ACTIONS(1014), + [anon_sym_U_SQUOTE] = ACTIONS(1014), + [anon_sym_u8_SQUOTE] = ACTIONS(1014), + [anon_sym_SQUOTE] = ACTIONS(1014), + [anon_sym_L_DQUOTE] = ACTIONS(1014), + [anon_sym_u_DQUOTE] = ACTIONS(1014), + [anon_sym_U_DQUOTE] = ACTIONS(1014), + [anon_sym_u8_DQUOTE] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(1014), + [sym_true] = ACTIONS(1012), + [sym_false] = ACTIONS(1012), + [sym_null] = ACTIONS(1012), + [sym_comment] = ACTIONS(3), + }, + [151] = { + [sym_identifier] = ACTIONS(1016), + [aux_sym_preproc_include_token1] = ACTIONS(1016), + [aux_sym_preproc_def_token1] = ACTIONS(1016), + [aux_sym_preproc_if_token1] = ACTIONS(1016), + [aux_sym_preproc_if_token2] = ACTIONS(1016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1016), + [aux_sym_preproc_else_token1] = ACTIONS(1016), + [aux_sym_preproc_elif_token1] = ACTIONS(1016), + [sym_preproc_directive] = ACTIONS(1016), + [anon_sym_SEMI] = ACTIONS(1018), + [anon_sym_typedef] = ACTIONS(1016), + [anon_sym_extern] = ACTIONS(1016), + [anon_sym___attribute__] = ACTIONS(1016), + [anon_sym_LPAREN2] = ACTIONS(1018), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_STAR] = ACTIONS(1018), + [anon_sym_static] = ACTIONS(1016), + [anon_sym_auto] = ACTIONS(1016), + [anon_sym_register] = ACTIONS(1016), + [anon_sym_inline] = ACTIONS(1016), + [anon_sym_const] = ACTIONS(1016), + [anon_sym_volatile] = ACTIONS(1016), + [anon_sym_restrict] = ACTIONS(1016), + [anon_sym__Atomic] = ACTIONS(1016), + [anon_sym_signed] = ACTIONS(1016), + [anon_sym_unsigned] = ACTIONS(1016), + [anon_sym_long] = ACTIONS(1016), + [anon_sym_short] = ACTIONS(1016), + [sym_primitive_type] = ACTIONS(1016), + [anon_sym_enum] = ACTIONS(1016), + [anon_sym_struct] = ACTIONS(1016), + [anon_sym_union] = ACTIONS(1016), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_else] = ACTIONS(1016), + [anon_sym_switch] = ACTIONS(1016), + [anon_sym_case] = ACTIONS(1016), + [anon_sym_default] = ACTIONS(1016), + [anon_sym_while] = ACTIONS(1016), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_for] = ACTIONS(1016), + [anon_sym_return] = ACTIONS(1016), + [anon_sym_break] = ACTIONS(1016), + [anon_sym_continue] = ACTIONS(1016), + [anon_sym_goto] = ACTIONS(1016), + [anon_sym_AMP] = ACTIONS(1018), + [anon_sym_BANG] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1016), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), + [anon_sym_PLUS_PLUS] = ACTIONS(1018), + [anon_sym_sizeof] = ACTIONS(1016), + [sym_number_literal] = ACTIONS(1018), + [anon_sym_L_SQUOTE] = ACTIONS(1018), + [anon_sym_u_SQUOTE] = ACTIONS(1018), + [anon_sym_U_SQUOTE] = ACTIONS(1018), + [anon_sym_u8_SQUOTE] = ACTIONS(1018), + [anon_sym_SQUOTE] = ACTIONS(1018), + [anon_sym_L_DQUOTE] = ACTIONS(1018), + [anon_sym_u_DQUOTE] = ACTIONS(1018), + [anon_sym_U_DQUOTE] = ACTIONS(1018), + [anon_sym_u8_DQUOTE] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(1018), + [sym_true] = ACTIONS(1016), + [sym_false] = ACTIONS(1016), + [sym_null] = ACTIONS(1016), + [sym_comment] = ACTIONS(3), + }, + [152] = { + [sym_identifier] = ACTIONS(1020), + [aux_sym_preproc_include_token1] = ACTIONS(1020), + [aux_sym_preproc_def_token1] = ACTIONS(1020), + [aux_sym_preproc_if_token1] = ACTIONS(1020), + [aux_sym_preproc_if_token2] = ACTIONS(1020), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), + [aux_sym_preproc_else_token1] = ACTIONS(1020), + [aux_sym_preproc_elif_token1] = ACTIONS(1020), + [sym_preproc_directive] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1022), + [anon_sym_typedef] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(1020), + [anon_sym___attribute__] = ACTIONS(1020), + [anon_sym_LPAREN2] = ACTIONS(1022), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(1020), + [anon_sym_auto] = ACTIONS(1020), + [anon_sym_register] = ACTIONS(1020), + [anon_sym_inline] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1020), + [anon_sym_volatile] = ACTIONS(1020), + [anon_sym_restrict] = ACTIONS(1020), + [anon_sym__Atomic] = ACTIONS(1020), + [anon_sym_signed] = ACTIONS(1020), + [anon_sym_unsigned] = ACTIONS(1020), + [anon_sym_long] = ACTIONS(1020), + [anon_sym_short] = ACTIONS(1020), + [sym_primitive_type] = ACTIONS(1020), + [anon_sym_enum] = ACTIONS(1020), + [anon_sym_struct] = ACTIONS(1020), + [anon_sym_union] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_else] = ACTIONS(1020), + [anon_sym_switch] = ACTIONS(1020), + [anon_sym_case] = ACTIONS(1020), + [anon_sym_default] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_goto] = ACTIONS(1020), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1022), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_sizeof] = ACTIONS(1020), + [sym_number_literal] = ACTIONS(1022), + [anon_sym_L_SQUOTE] = ACTIONS(1022), + [anon_sym_u_SQUOTE] = ACTIONS(1022), + [anon_sym_U_SQUOTE] = ACTIONS(1022), + [anon_sym_u8_SQUOTE] = ACTIONS(1022), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_L_DQUOTE] = ACTIONS(1022), + [anon_sym_u_DQUOTE] = ACTIONS(1022), + [anon_sym_U_DQUOTE] = ACTIONS(1022), + [anon_sym_u8_DQUOTE] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1022), + [sym_true] = ACTIONS(1020), + [sym_false] = ACTIONS(1020), + [sym_null] = ACTIONS(1020), + [sym_comment] = ACTIONS(3), + }, + [153] = { + [sym_identifier] = ACTIONS(1024), + [aux_sym_preproc_include_token1] = ACTIONS(1024), + [aux_sym_preproc_def_token1] = ACTIONS(1024), + [aux_sym_preproc_if_token1] = ACTIONS(1024), + [aux_sym_preproc_if_token2] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1024), + [aux_sym_preproc_else_token1] = ACTIONS(1024), + [aux_sym_preproc_elif_token1] = ACTIONS(1024), + [sym_preproc_directive] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_typedef] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1024), + [anon_sym___attribute__] = ACTIONS(1024), + [anon_sym_LPAREN2] = ACTIONS(1026), + [anon_sym_LBRACE] = ACTIONS(1026), + [anon_sym_STAR] = ACTIONS(1026), + [anon_sym_static] = ACTIONS(1024), + [anon_sym_auto] = ACTIONS(1024), + [anon_sym_register] = ACTIONS(1024), + [anon_sym_inline] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_volatile] = ACTIONS(1024), + [anon_sym_restrict] = ACTIONS(1024), + [anon_sym__Atomic] = ACTIONS(1024), + [anon_sym_signed] = ACTIONS(1024), + [anon_sym_unsigned] = ACTIONS(1024), + [anon_sym_long] = ACTIONS(1024), + [anon_sym_short] = ACTIONS(1024), + [sym_primitive_type] = ACTIONS(1024), + [anon_sym_enum] = ACTIONS(1024), + [anon_sym_struct] = ACTIONS(1024), + [anon_sym_union] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_else] = ACTIONS(1024), + [anon_sym_switch] = ACTIONS(1024), + [anon_sym_case] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_goto] = ACTIONS(1024), + [anon_sym_AMP] = ACTIONS(1026), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_TILDE] = ACTIONS(1026), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_sizeof] = ACTIONS(1024), + [sym_number_literal] = ACTIONS(1026), + [anon_sym_L_SQUOTE] = ACTIONS(1026), + [anon_sym_u_SQUOTE] = ACTIONS(1026), + [anon_sym_U_SQUOTE] = ACTIONS(1026), + [anon_sym_u8_SQUOTE] = ACTIONS(1026), + [anon_sym_SQUOTE] = ACTIONS(1026), + [anon_sym_L_DQUOTE] = ACTIONS(1026), + [anon_sym_u_DQUOTE] = ACTIONS(1026), + [anon_sym_U_DQUOTE] = ACTIONS(1026), + [anon_sym_u8_DQUOTE] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(1026), + [sym_true] = ACTIONS(1024), + [sym_false] = ACTIONS(1024), + [sym_null] = ACTIONS(1024), + [sym_comment] = ACTIONS(3), + }, + [154] = { + [sym_identifier] = ACTIONS(1028), + [aux_sym_preproc_include_token1] = ACTIONS(1028), + [aux_sym_preproc_def_token1] = ACTIONS(1028), + [aux_sym_preproc_if_token1] = ACTIONS(1028), + [aux_sym_preproc_if_token2] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), + [aux_sym_preproc_else_token1] = ACTIONS(1028), + [aux_sym_preproc_elif_token1] = ACTIONS(1028), + [sym_preproc_directive] = ACTIONS(1028), + [anon_sym_SEMI] = ACTIONS(1030), + [anon_sym_typedef] = ACTIONS(1028), + [anon_sym_extern] = ACTIONS(1028), + [anon_sym___attribute__] = ACTIONS(1028), + [anon_sym_LPAREN2] = ACTIONS(1030), + [anon_sym_LBRACE] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_static] = ACTIONS(1028), + [anon_sym_auto] = ACTIONS(1028), + [anon_sym_register] = ACTIONS(1028), + [anon_sym_inline] = ACTIONS(1028), + [anon_sym_const] = ACTIONS(1028), + [anon_sym_volatile] = ACTIONS(1028), + [anon_sym_restrict] = ACTIONS(1028), + [anon_sym__Atomic] = ACTIONS(1028), + [anon_sym_signed] = ACTIONS(1028), + [anon_sym_unsigned] = ACTIONS(1028), + [anon_sym_long] = ACTIONS(1028), + [anon_sym_short] = ACTIONS(1028), + [sym_primitive_type] = ACTIONS(1028), + [anon_sym_enum] = ACTIONS(1028), + [anon_sym_struct] = ACTIONS(1028), + [anon_sym_union] = ACTIONS(1028), + [anon_sym_if] = ACTIONS(1028), + [anon_sym_else] = ACTIONS(1028), + [anon_sym_switch] = ACTIONS(1028), + [anon_sym_case] = ACTIONS(1028), + [anon_sym_default] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1028), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_break] = ACTIONS(1028), + [anon_sym_continue] = ACTIONS(1028), + [anon_sym_goto] = ACTIONS(1028), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_TILDE] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_sizeof] = ACTIONS(1028), + [sym_number_literal] = ACTIONS(1030), + [anon_sym_L_SQUOTE] = ACTIONS(1030), + [anon_sym_u_SQUOTE] = ACTIONS(1030), + [anon_sym_U_SQUOTE] = ACTIONS(1030), + [anon_sym_u8_SQUOTE] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_L_DQUOTE] = ACTIONS(1030), + [anon_sym_u_DQUOTE] = ACTIONS(1030), + [anon_sym_U_DQUOTE] = ACTIONS(1030), + [anon_sym_u8_DQUOTE] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym_true] = ACTIONS(1028), + [sym_false] = ACTIONS(1028), + [sym_null] = ACTIONS(1028), + [sym_comment] = ACTIONS(3), + }, + [155] = { + [sym_identifier] = ACTIONS(1032), + [aux_sym_preproc_include_token1] = ACTIONS(1032), + [aux_sym_preproc_def_token1] = ACTIONS(1032), + [aux_sym_preproc_if_token1] = ACTIONS(1032), + [aux_sym_preproc_if_token2] = ACTIONS(1032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1032), + [aux_sym_preproc_else_token1] = ACTIONS(1032), + [aux_sym_preproc_elif_token1] = ACTIONS(1032), + [sym_preproc_directive] = ACTIONS(1032), + [anon_sym_SEMI] = ACTIONS(1034), + [anon_sym_typedef] = ACTIONS(1032), + [anon_sym_extern] = ACTIONS(1032), + [anon_sym___attribute__] = ACTIONS(1032), + [anon_sym_LPAREN2] = ACTIONS(1034), + [anon_sym_LBRACE] = ACTIONS(1034), + [anon_sym_STAR] = ACTIONS(1034), + [anon_sym_static] = ACTIONS(1032), + [anon_sym_auto] = ACTIONS(1032), + [anon_sym_register] = ACTIONS(1032), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_const] = ACTIONS(1032), + [anon_sym_volatile] = ACTIONS(1032), + [anon_sym_restrict] = ACTIONS(1032), + [anon_sym__Atomic] = ACTIONS(1032), + [anon_sym_signed] = ACTIONS(1032), + [anon_sym_unsigned] = ACTIONS(1032), + [anon_sym_long] = ACTIONS(1032), + [anon_sym_short] = ACTIONS(1032), + [sym_primitive_type] = ACTIONS(1032), + [anon_sym_enum] = ACTIONS(1032), + [anon_sym_struct] = ACTIONS(1032), + [anon_sym_union] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_else] = ACTIONS(1032), + [anon_sym_switch] = ACTIONS(1032), + [anon_sym_case] = ACTIONS(1032), + [anon_sym_default] = ACTIONS(1032), + [anon_sym_while] = ACTIONS(1032), + [anon_sym_do] = ACTIONS(1032), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_return] = ACTIONS(1032), + [anon_sym_break] = ACTIONS(1032), + [anon_sym_continue] = ACTIONS(1032), + [anon_sym_goto] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(1034), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_TILDE] = ACTIONS(1034), + [anon_sym_DASH] = ACTIONS(1032), + [anon_sym_PLUS] = ACTIONS(1032), + [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_PLUS_PLUS] = ACTIONS(1034), + [anon_sym_sizeof] = ACTIONS(1032), + [sym_number_literal] = ACTIONS(1034), + [anon_sym_L_SQUOTE] = ACTIONS(1034), + [anon_sym_u_SQUOTE] = ACTIONS(1034), + [anon_sym_U_SQUOTE] = ACTIONS(1034), + [anon_sym_u8_SQUOTE] = ACTIONS(1034), + [anon_sym_SQUOTE] = ACTIONS(1034), + [anon_sym_L_DQUOTE] = ACTIONS(1034), + [anon_sym_u_DQUOTE] = ACTIONS(1034), + [anon_sym_U_DQUOTE] = ACTIONS(1034), + [anon_sym_u8_DQUOTE] = ACTIONS(1034), + [anon_sym_DQUOTE] = ACTIONS(1034), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_comment] = ACTIONS(3), + }, + [156] = { + [sym_identifier] = ACTIONS(1036), + [aux_sym_preproc_include_token1] = ACTIONS(1036), + [aux_sym_preproc_def_token1] = ACTIONS(1036), + [aux_sym_preproc_if_token1] = ACTIONS(1036), + [aux_sym_preproc_if_token2] = ACTIONS(1036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1036), + [aux_sym_preproc_else_token1] = ACTIONS(1036), + [aux_sym_preproc_elif_token1] = ACTIONS(1036), + [sym_preproc_directive] = ACTIONS(1036), + [anon_sym_SEMI] = ACTIONS(1038), + [anon_sym_typedef] = ACTIONS(1036), + [anon_sym_extern] = ACTIONS(1036), + [anon_sym___attribute__] = ACTIONS(1036), + [anon_sym_LPAREN2] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_STAR] = ACTIONS(1038), + [anon_sym_static] = ACTIONS(1036), + [anon_sym_auto] = ACTIONS(1036), + [anon_sym_register] = ACTIONS(1036), + [anon_sym_inline] = ACTIONS(1036), + [anon_sym_const] = ACTIONS(1036), + [anon_sym_volatile] = ACTIONS(1036), + [anon_sym_restrict] = ACTIONS(1036), + [anon_sym__Atomic] = ACTIONS(1036), + [anon_sym_signed] = ACTIONS(1036), + [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), + [anon_sym_if] = ACTIONS(1036), + [anon_sym_else] = ACTIONS(1036), + [anon_sym_switch] = ACTIONS(1036), + [anon_sym_case] = ACTIONS(1036), + [anon_sym_default] = ACTIONS(1036), + [anon_sym_while] = ACTIONS(1036), + [anon_sym_do] = ACTIONS(1036), + [anon_sym_for] = ACTIONS(1036), + [anon_sym_return] = ACTIONS(1036), + [anon_sym_break] = ACTIONS(1036), + [anon_sym_continue] = ACTIONS(1036), + [anon_sym_goto] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1038), + [anon_sym_BANG] = ACTIONS(1038), + [anon_sym_TILDE] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_PLUS] = ACTIONS(1036), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_sizeof] = ACTIONS(1036), + [sym_number_literal] = ACTIONS(1038), + [anon_sym_L_SQUOTE] = ACTIONS(1038), + [anon_sym_u_SQUOTE] = ACTIONS(1038), + [anon_sym_U_SQUOTE] = ACTIONS(1038), + [anon_sym_u8_SQUOTE] = ACTIONS(1038), + [anon_sym_SQUOTE] = ACTIONS(1038), + [anon_sym_L_DQUOTE] = ACTIONS(1038), + [anon_sym_u_DQUOTE] = ACTIONS(1038), + [anon_sym_U_DQUOTE] = ACTIONS(1038), + [anon_sym_u8_DQUOTE] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1038), + [sym_true] = ACTIONS(1036), + [sym_false] = ACTIONS(1036), + [sym_null] = ACTIONS(1036), + [sym_comment] = ACTIONS(3), + }, + [157] = { + [sym_identifier] = ACTIONS(1040), + [aux_sym_preproc_include_token1] = ACTIONS(1040), + [aux_sym_preproc_def_token1] = ACTIONS(1040), + [aux_sym_preproc_if_token1] = ACTIONS(1040), + [aux_sym_preproc_if_token2] = ACTIONS(1040), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), + [aux_sym_preproc_else_token1] = ACTIONS(1040), + [aux_sym_preproc_elif_token1] = ACTIONS(1040), + [sym_preproc_directive] = ACTIONS(1040), + [anon_sym_SEMI] = ACTIONS(1042), + [anon_sym_typedef] = ACTIONS(1040), + [anon_sym_extern] = ACTIONS(1040), + [anon_sym___attribute__] = ACTIONS(1040), + [anon_sym_LPAREN2] = ACTIONS(1042), + [anon_sym_LBRACE] = ACTIONS(1042), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_static] = ACTIONS(1040), + [anon_sym_auto] = ACTIONS(1040), + [anon_sym_register] = ACTIONS(1040), + [anon_sym_inline] = ACTIONS(1040), + [anon_sym_const] = ACTIONS(1040), + [anon_sym_volatile] = ACTIONS(1040), + [anon_sym_restrict] = ACTIONS(1040), + [anon_sym__Atomic] = ACTIONS(1040), + [anon_sym_signed] = ACTIONS(1040), + [anon_sym_unsigned] = ACTIONS(1040), + [anon_sym_long] = ACTIONS(1040), + [anon_sym_short] = ACTIONS(1040), + [sym_primitive_type] = ACTIONS(1040), + [anon_sym_enum] = ACTIONS(1040), + [anon_sym_struct] = ACTIONS(1040), + [anon_sym_union] = ACTIONS(1040), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(1040), + [anon_sym_switch] = ACTIONS(1040), + [anon_sym_case] = ACTIONS(1040), + [anon_sym_default] = ACTIONS(1040), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_do] = ACTIONS(1040), + [anon_sym_for] = ACTIONS(1040), + [anon_sym_return] = ACTIONS(1040), + [anon_sym_break] = ACTIONS(1040), + [anon_sym_continue] = ACTIONS(1040), + [anon_sym_goto] = ACTIONS(1040), + [anon_sym_AMP] = ACTIONS(1042), + [anon_sym_BANG] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1040), + [anon_sym_PLUS] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1042), + [anon_sym_sizeof] = ACTIONS(1040), + [sym_number_literal] = ACTIONS(1042), + [anon_sym_L_SQUOTE] = ACTIONS(1042), + [anon_sym_u_SQUOTE] = ACTIONS(1042), + [anon_sym_U_SQUOTE] = ACTIONS(1042), + [anon_sym_u8_SQUOTE] = ACTIONS(1042), + [anon_sym_SQUOTE] = ACTIONS(1042), + [anon_sym_L_DQUOTE] = ACTIONS(1042), + [anon_sym_u_DQUOTE] = ACTIONS(1042), + [anon_sym_U_DQUOTE] = ACTIONS(1042), + [anon_sym_u8_DQUOTE] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(1042), + [sym_true] = ACTIONS(1040), + [sym_false] = ACTIONS(1040), + [sym_null] = ACTIONS(1040), + [sym_comment] = ACTIONS(3), + }, + [158] = { + [sym_identifier] = ACTIONS(1044), + [aux_sym_preproc_include_token1] = ACTIONS(1044), + [aux_sym_preproc_def_token1] = ACTIONS(1044), + [aux_sym_preproc_if_token1] = ACTIONS(1044), + [aux_sym_preproc_if_token2] = ACTIONS(1044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1044), + [aux_sym_preproc_else_token1] = ACTIONS(1044), + [aux_sym_preproc_elif_token1] = ACTIONS(1044), + [sym_preproc_directive] = ACTIONS(1044), + [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_typedef] = ACTIONS(1044), + [anon_sym_extern] = ACTIONS(1044), + [anon_sym___attribute__] = ACTIONS(1044), + [anon_sym_LPAREN2] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_STAR] = ACTIONS(1046), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_auto] = ACTIONS(1044), + [anon_sym_register] = ACTIONS(1044), + [anon_sym_inline] = ACTIONS(1044), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_volatile] = ACTIONS(1044), + [anon_sym_restrict] = ACTIONS(1044), + [anon_sym__Atomic] = ACTIONS(1044), + [anon_sym_signed] = ACTIONS(1044), + [anon_sym_unsigned] = ACTIONS(1044), + [anon_sym_long] = ACTIONS(1044), + [anon_sym_short] = ACTIONS(1044), + [sym_primitive_type] = ACTIONS(1044), + [anon_sym_enum] = ACTIONS(1044), + [anon_sym_struct] = ACTIONS(1044), + [anon_sym_union] = ACTIONS(1044), + [anon_sym_if] = ACTIONS(1044), + [anon_sym_else] = ACTIONS(1044), + [anon_sym_switch] = ACTIONS(1044), + [anon_sym_case] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1044), + [anon_sym_while] = ACTIONS(1044), + [anon_sym_do] = ACTIONS(1044), + [anon_sym_for] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1044), + [anon_sym_break] = ACTIONS(1044), + [anon_sym_continue] = ACTIONS(1044), + [anon_sym_goto] = ACTIONS(1044), + [anon_sym_AMP] = ACTIONS(1046), + [anon_sym_BANG] = ACTIONS(1046), + [anon_sym_TILDE] = ACTIONS(1046), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_DASH_DASH] = ACTIONS(1046), + [anon_sym_PLUS_PLUS] = ACTIONS(1046), + [anon_sym_sizeof] = ACTIONS(1044), + [sym_number_literal] = ACTIONS(1046), + [anon_sym_L_SQUOTE] = ACTIONS(1046), + [anon_sym_u_SQUOTE] = ACTIONS(1046), + [anon_sym_U_SQUOTE] = ACTIONS(1046), + [anon_sym_u8_SQUOTE] = ACTIONS(1046), + [anon_sym_SQUOTE] = ACTIONS(1046), + [anon_sym_L_DQUOTE] = ACTIONS(1046), + [anon_sym_u_DQUOTE] = ACTIONS(1046), + [anon_sym_U_DQUOTE] = ACTIONS(1046), + [anon_sym_u8_DQUOTE] = ACTIONS(1046), + [anon_sym_DQUOTE] = ACTIONS(1046), + [sym_true] = ACTIONS(1044), + [sym_false] = ACTIONS(1044), + [sym_null] = ACTIONS(1044), + [sym_comment] = ACTIONS(3), + }, + [159] = { + [sym_identifier] = ACTIONS(1048), + [aux_sym_preproc_include_token1] = ACTIONS(1048), + [aux_sym_preproc_def_token1] = ACTIONS(1048), + [aux_sym_preproc_if_token1] = ACTIONS(1048), + [aux_sym_preproc_if_token2] = ACTIONS(1048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1048), + [aux_sym_preproc_else_token1] = ACTIONS(1048), + [aux_sym_preproc_elif_token1] = ACTIONS(1048), + [sym_preproc_directive] = ACTIONS(1048), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_typedef] = ACTIONS(1048), + [anon_sym_extern] = ACTIONS(1048), + [anon_sym___attribute__] = ACTIONS(1048), + [anon_sym_LPAREN2] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_STAR] = ACTIONS(1050), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_auto] = ACTIONS(1048), + [anon_sym_register] = ACTIONS(1048), + [anon_sym_inline] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1048), + [anon_sym_volatile] = ACTIONS(1048), + [anon_sym_restrict] = ACTIONS(1048), + [anon_sym__Atomic] = ACTIONS(1048), + [anon_sym_signed] = ACTIONS(1048), + [anon_sym_unsigned] = ACTIONS(1048), + [anon_sym_long] = ACTIONS(1048), + [anon_sym_short] = ACTIONS(1048), + [sym_primitive_type] = ACTIONS(1048), + [anon_sym_enum] = ACTIONS(1048), + [anon_sym_struct] = ACTIONS(1048), + [anon_sym_union] = ACTIONS(1048), + [anon_sym_if] = ACTIONS(1048), + [anon_sym_else] = ACTIONS(1048), + [anon_sym_switch] = ACTIONS(1048), + [anon_sym_case] = ACTIONS(1048), + [anon_sym_default] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1048), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_goto] = ACTIONS(1048), + [anon_sym_AMP] = ACTIONS(1050), + [anon_sym_BANG] = ACTIONS(1050), + [anon_sym_TILDE] = ACTIONS(1050), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_PLUS_PLUS] = ACTIONS(1050), + [anon_sym_sizeof] = ACTIONS(1048), + [sym_number_literal] = ACTIONS(1050), + [anon_sym_L_SQUOTE] = ACTIONS(1050), + [anon_sym_u_SQUOTE] = ACTIONS(1050), + [anon_sym_U_SQUOTE] = ACTIONS(1050), + [anon_sym_u8_SQUOTE] = ACTIONS(1050), + [anon_sym_SQUOTE] = ACTIONS(1050), + [anon_sym_L_DQUOTE] = ACTIONS(1050), + [anon_sym_u_DQUOTE] = ACTIONS(1050), + [anon_sym_U_DQUOTE] = ACTIONS(1050), + [anon_sym_u8_DQUOTE] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym_true] = ACTIONS(1048), + [sym_false] = ACTIONS(1048), + [sym_null] = ACTIONS(1048), + [sym_comment] = ACTIONS(3), + }, + [160] = { + [sym_identifier] = ACTIONS(1052), + [aux_sym_preproc_include_token1] = ACTIONS(1052), + [aux_sym_preproc_def_token1] = ACTIONS(1052), + [aux_sym_preproc_if_token1] = ACTIONS(1052), + [aux_sym_preproc_if_token2] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), + [aux_sym_preproc_else_token1] = ACTIONS(1052), + [aux_sym_preproc_elif_token1] = ACTIONS(1052), + [sym_preproc_directive] = ACTIONS(1052), + [anon_sym_SEMI] = ACTIONS(1054), + [anon_sym_typedef] = ACTIONS(1052), + [anon_sym_extern] = ACTIONS(1052), + [anon_sym___attribute__] = ACTIONS(1052), + [anon_sym_LPAREN2] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_static] = ACTIONS(1052), + [anon_sym_auto] = ACTIONS(1052), + [anon_sym_register] = ACTIONS(1052), + [anon_sym_inline] = ACTIONS(1052), + [anon_sym_const] = ACTIONS(1052), + [anon_sym_volatile] = ACTIONS(1052), + [anon_sym_restrict] = ACTIONS(1052), + [anon_sym__Atomic] = ACTIONS(1052), + [anon_sym_signed] = ACTIONS(1052), + [anon_sym_unsigned] = ACTIONS(1052), + [anon_sym_long] = ACTIONS(1052), + [anon_sym_short] = ACTIONS(1052), + [sym_primitive_type] = ACTIONS(1052), + [anon_sym_enum] = ACTIONS(1052), + [anon_sym_struct] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1052), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_else] = ACTIONS(1052), + [anon_sym_switch] = ACTIONS(1052), + [anon_sym_case] = ACTIONS(1052), + [anon_sym_default] = ACTIONS(1052), + [anon_sym_while] = ACTIONS(1052), + [anon_sym_do] = ACTIONS(1052), + [anon_sym_for] = ACTIONS(1052), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_break] = ACTIONS(1052), + [anon_sym_continue] = ACTIONS(1052), + [anon_sym_goto] = ACTIONS(1052), + [anon_sym_AMP] = ACTIONS(1054), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_DASH_DASH] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1054), + [anon_sym_sizeof] = ACTIONS(1052), + [sym_number_literal] = ACTIONS(1054), + [anon_sym_L_SQUOTE] = ACTIONS(1054), + [anon_sym_u_SQUOTE] = ACTIONS(1054), + [anon_sym_U_SQUOTE] = ACTIONS(1054), + [anon_sym_u8_SQUOTE] = ACTIONS(1054), + [anon_sym_SQUOTE] = ACTIONS(1054), + [anon_sym_L_DQUOTE] = ACTIONS(1054), + [anon_sym_u_DQUOTE] = ACTIONS(1054), + [anon_sym_U_DQUOTE] = ACTIONS(1054), + [anon_sym_u8_DQUOTE] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym_true] = ACTIONS(1052), + [sym_false] = ACTIONS(1052), + [sym_null] = ACTIONS(1052), + [sym_comment] = ACTIONS(3), + }, + [161] = { + [sym_identifier] = ACTIONS(1056), + [aux_sym_preproc_include_token1] = ACTIONS(1056), + [aux_sym_preproc_def_token1] = ACTIONS(1056), + [aux_sym_preproc_if_token1] = ACTIONS(1056), + [aux_sym_preproc_if_token2] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1056), + [aux_sym_preproc_else_token1] = ACTIONS(1056), + [aux_sym_preproc_elif_token1] = ACTIONS(1056), + [sym_preproc_directive] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1058), + [anon_sym_typedef] = ACTIONS(1056), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym___attribute__] = ACTIONS(1056), + [anon_sym_LPAREN2] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_static] = ACTIONS(1056), + [anon_sym_auto] = ACTIONS(1056), + [anon_sym_register] = ACTIONS(1056), + [anon_sym_inline] = ACTIONS(1056), + [anon_sym_const] = ACTIONS(1056), + [anon_sym_volatile] = ACTIONS(1056), + [anon_sym_restrict] = ACTIONS(1056), + [anon_sym__Atomic] = ACTIONS(1056), + [anon_sym_signed] = ACTIONS(1056), + [anon_sym_unsigned] = ACTIONS(1056), + [anon_sym_long] = ACTIONS(1056), + [anon_sym_short] = ACTIONS(1056), + [sym_primitive_type] = ACTIONS(1056), + [anon_sym_enum] = ACTIONS(1056), + [anon_sym_struct] = ACTIONS(1056), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_if] = ACTIONS(1056), + [anon_sym_else] = ACTIONS(1056), + [anon_sym_switch] = ACTIONS(1056), + [anon_sym_case] = ACTIONS(1056), + [anon_sym_default] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1056), + [anon_sym_do] = ACTIONS(1056), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_return] = ACTIONS(1056), + [anon_sym_break] = ACTIONS(1056), + [anon_sym_continue] = ACTIONS(1056), + [anon_sym_goto] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_BANG] = ACTIONS(1058), + [anon_sym_TILDE] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1056), + [anon_sym_PLUS] = ACTIONS(1056), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_sizeof] = ACTIONS(1056), + [sym_number_literal] = ACTIONS(1058), + [anon_sym_L_SQUOTE] = ACTIONS(1058), + [anon_sym_u_SQUOTE] = ACTIONS(1058), + [anon_sym_U_SQUOTE] = ACTIONS(1058), + [anon_sym_u8_SQUOTE] = ACTIONS(1058), + [anon_sym_SQUOTE] = ACTIONS(1058), + [anon_sym_L_DQUOTE] = ACTIONS(1058), + [anon_sym_u_DQUOTE] = ACTIONS(1058), + [anon_sym_U_DQUOTE] = ACTIONS(1058), + [anon_sym_u8_DQUOTE] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1058), + [sym_true] = ACTIONS(1056), + [sym_false] = ACTIONS(1056), + [sym_null] = ACTIONS(1056), + [sym_comment] = ACTIONS(3), + }, + [162] = { + [sym_identifier] = ACTIONS(1060), + [aux_sym_preproc_include_token1] = ACTIONS(1060), + [aux_sym_preproc_def_token1] = ACTIONS(1060), + [aux_sym_preproc_if_token1] = ACTIONS(1060), + [aux_sym_preproc_if_token2] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), + [aux_sym_preproc_else_token1] = ACTIONS(1060), + [aux_sym_preproc_elif_token1] = ACTIONS(1060), + [sym_preproc_directive] = ACTIONS(1060), + [anon_sym_SEMI] = ACTIONS(1062), + [anon_sym_typedef] = ACTIONS(1060), + [anon_sym_extern] = ACTIONS(1060), + [anon_sym___attribute__] = ACTIONS(1060), + [anon_sym_LPAREN2] = ACTIONS(1062), + [anon_sym_LBRACE] = ACTIONS(1062), + [anon_sym_STAR] = ACTIONS(1062), + [anon_sym_static] = ACTIONS(1060), + [anon_sym_auto] = ACTIONS(1060), + [anon_sym_register] = ACTIONS(1060), + [anon_sym_inline] = ACTIONS(1060), + [anon_sym_const] = ACTIONS(1060), + [anon_sym_volatile] = ACTIONS(1060), + [anon_sym_restrict] = ACTIONS(1060), + [anon_sym__Atomic] = ACTIONS(1060), + [anon_sym_signed] = ACTIONS(1060), + [anon_sym_unsigned] = ACTIONS(1060), + [anon_sym_long] = ACTIONS(1060), + [anon_sym_short] = ACTIONS(1060), + [sym_primitive_type] = ACTIONS(1060), + [anon_sym_enum] = ACTIONS(1060), + [anon_sym_struct] = ACTIONS(1060), + [anon_sym_union] = ACTIONS(1060), + [anon_sym_if] = ACTIONS(1060), + [anon_sym_else] = ACTIONS(1060), + [anon_sym_switch] = ACTIONS(1060), + [anon_sym_case] = ACTIONS(1060), + [anon_sym_default] = ACTIONS(1060), + [anon_sym_while] = ACTIONS(1060), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_for] = ACTIONS(1060), + [anon_sym_return] = ACTIONS(1060), + [anon_sym_break] = ACTIONS(1060), + [anon_sym_continue] = ACTIONS(1060), + [anon_sym_goto] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_BANG] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1060), + [anon_sym_PLUS] = ACTIONS(1060), + [anon_sym_DASH_DASH] = ACTIONS(1062), + [anon_sym_PLUS_PLUS] = ACTIONS(1062), + [anon_sym_sizeof] = ACTIONS(1060), + [sym_number_literal] = ACTIONS(1062), + [anon_sym_L_SQUOTE] = ACTIONS(1062), + [anon_sym_u_SQUOTE] = ACTIONS(1062), + [anon_sym_U_SQUOTE] = ACTIONS(1062), + [anon_sym_u8_SQUOTE] = ACTIONS(1062), + [anon_sym_SQUOTE] = ACTIONS(1062), + [anon_sym_L_DQUOTE] = ACTIONS(1062), + [anon_sym_u_DQUOTE] = ACTIONS(1062), + [anon_sym_U_DQUOTE] = ACTIONS(1062), + [anon_sym_u8_DQUOTE] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1062), + [sym_true] = ACTIONS(1060), + [sym_false] = ACTIONS(1060), + [sym_null] = ACTIONS(1060), + [sym_comment] = ACTIONS(3), + }, + [163] = { + [sym_identifier] = ACTIONS(1064), + [aux_sym_preproc_include_token1] = ACTIONS(1064), + [aux_sym_preproc_def_token1] = ACTIONS(1064), + [aux_sym_preproc_if_token1] = ACTIONS(1064), + [aux_sym_preproc_if_token2] = ACTIONS(1064), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1064), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1064), + [aux_sym_preproc_else_token1] = ACTIONS(1064), + [aux_sym_preproc_elif_token1] = ACTIONS(1064), + [sym_preproc_directive] = ACTIONS(1064), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_typedef] = ACTIONS(1064), + [anon_sym_extern] = ACTIONS(1064), + [anon_sym___attribute__] = ACTIONS(1064), + [anon_sym_LPAREN2] = ACTIONS(1066), + [anon_sym_LBRACE] = ACTIONS(1066), + [anon_sym_STAR] = ACTIONS(1066), + [anon_sym_static] = ACTIONS(1064), + [anon_sym_auto] = ACTIONS(1064), + [anon_sym_register] = ACTIONS(1064), + [anon_sym_inline] = ACTIONS(1064), + [anon_sym_const] = ACTIONS(1064), + [anon_sym_volatile] = ACTIONS(1064), + [anon_sym_restrict] = ACTIONS(1064), + [anon_sym__Atomic] = ACTIONS(1064), + [anon_sym_signed] = ACTIONS(1064), + [anon_sym_unsigned] = ACTIONS(1064), + [anon_sym_long] = ACTIONS(1064), + [anon_sym_short] = ACTIONS(1064), + [sym_primitive_type] = ACTIONS(1064), + [anon_sym_enum] = ACTIONS(1064), + [anon_sym_struct] = ACTIONS(1064), + [anon_sym_union] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(1064), + [anon_sym_else] = ACTIONS(1064), + [anon_sym_switch] = ACTIONS(1064), + [anon_sym_case] = ACTIONS(1064), + [anon_sym_default] = ACTIONS(1064), + [anon_sym_while] = ACTIONS(1064), + [anon_sym_do] = ACTIONS(1064), + [anon_sym_for] = ACTIONS(1064), + [anon_sym_return] = ACTIONS(1064), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1064), + [anon_sym_goto] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1064), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_sizeof] = ACTIONS(1064), + [sym_number_literal] = ACTIONS(1066), + [anon_sym_L_SQUOTE] = ACTIONS(1066), + [anon_sym_u_SQUOTE] = ACTIONS(1066), + [anon_sym_U_SQUOTE] = ACTIONS(1066), + [anon_sym_u8_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_L_DQUOTE] = ACTIONS(1066), + [anon_sym_u_DQUOTE] = ACTIONS(1066), + [anon_sym_U_DQUOTE] = ACTIONS(1066), + [anon_sym_u8_DQUOTE] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(1066), + [sym_true] = ACTIONS(1064), + [sym_false] = ACTIONS(1064), + [sym_null] = ACTIONS(1064), + [sym_comment] = ACTIONS(3), + }, + [164] = { + [sym_identifier] = ACTIONS(1068), + [aux_sym_preproc_include_token1] = ACTIONS(1068), + [aux_sym_preproc_def_token1] = ACTIONS(1068), + [aux_sym_preproc_if_token1] = ACTIONS(1068), + [aux_sym_preproc_if_token2] = ACTIONS(1068), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1068), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1068), + [aux_sym_preproc_else_token1] = ACTIONS(1068), + [aux_sym_preproc_elif_token1] = ACTIONS(1068), + [sym_preproc_directive] = ACTIONS(1068), + [anon_sym_SEMI] = ACTIONS(1070), + [anon_sym_typedef] = ACTIONS(1068), + [anon_sym_extern] = ACTIONS(1068), + [anon_sym___attribute__] = ACTIONS(1068), + [anon_sym_LPAREN2] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(1070), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_auto] = ACTIONS(1068), + [anon_sym_register] = ACTIONS(1068), + [anon_sym_inline] = ACTIONS(1068), + [anon_sym_const] = ACTIONS(1068), + [anon_sym_volatile] = ACTIONS(1068), + [anon_sym_restrict] = ACTIONS(1068), + [anon_sym__Atomic] = ACTIONS(1068), + [anon_sym_signed] = ACTIONS(1068), + [anon_sym_unsigned] = ACTIONS(1068), + [anon_sym_long] = ACTIONS(1068), + [anon_sym_short] = ACTIONS(1068), + [sym_primitive_type] = ACTIONS(1068), + [anon_sym_enum] = ACTIONS(1068), + [anon_sym_struct] = ACTIONS(1068), + [anon_sym_union] = ACTIONS(1068), + [anon_sym_if] = ACTIONS(1068), + [anon_sym_else] = ACTIONS(1068), + [anon_sym_switch] = ACTIONS(1068), + [anon_sym_case] = ACTIONS(1068), + [anon_sym_default] = ACTIONS(1068), + [anon_sym_while] = ACTIONS(1068), + [anon_sym_do] = ACTIONS(1068), + [anon_sym_for] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1068), + [anon_sym_break] = ACTIONS(1068), + [anon_sym_continue] = ACTIONS(1068), + [anon_sym_goto] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1070), + [anon_sym_BANG] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_PLUS_PLUS] = ACTIONS(1070), + [anon_sym_sizeof] = ACTIONS(1068), + [sym_number_literal] = ACTIONS(1070), + [anon_sym_L_SQUOTE] = ACTIONS(1070), + [anon_sym_u_SQUOTE] = ACTIONS(1070), + [anon_sym_U_SQUOTE] = ACTIONS(1070), + [anon_sym_u8_SQUOTE] = ACTIONS(1070), + [anon_sym_SQUOTE] = ACTIONS(1070), + [anon_sym_L_DQUOTE] = ACTIONS(1070), + [anon_sym_u_DQUOTE] = ACTIONS(1070), + [anon_sym_U_DQUOTE] = ACTIONS(1070), + [anon_sym_u8_DQUOTE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym_true] = ACTIONS(1068), + [sym_false] = ACTIONS(1068), + [sym_null] = ACTIONS(1068), + [sym_comment] = ACTIONS(3), + }, + [165] = { + [sym_identifier] = ACTIONS(1072), + [aux_sym_preproc_include_token1] = ACTIONS(1072), + [aux_sym_preproc_def_token1] = ACTIONS(1072), + [aux_sym_preproc_if_token1] = ACTIONS(1072), + [aux_sym_preproc_if_token2] = ACTIONS(1072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1072), + [aux_sym_preproc_else_token1] = ACTIONS(1072), + [aux_sym_preproc_elif_token1] = ACTIONS(1072), + [sym_preproc_directive] = ACTIONS(1072), + [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_typedef] = ACTIONS(1072), + [anon_sym_extern] = ACTIONS(1072), + [anon_sym___attribute__] = ACTIONS(1072), + [anon_sym_LPAREN2] = ACTIONS(1074), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_STAR] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1072), + [anon_sym_auto] = ACTIONS(1072), + [anon_sym_register] = ACTIONS(1072), + [anon_sym_inline] = ACTIONS(1072), + [anon_sym_const] = ACTIONS(1072), + [anon_sym_volatile] = ACTIONS(1072), + [anon_sym_restrict] = ACTIONS(1072), + [anon_sym__Atomic] = ACTIONS(1072), + [anon_sym_signed] = ACTIONS(1072), + [anon_sym_unsigned] = ACTIONS(1072), + [anon_sym_long] = ACTIONS(1072), + [anon_sym_short] = ACTIONS(1072), + [sym_primitive_type] = ACTIONS(1072), + [anon_sym_enum] = ACTIONS(1072), + [anon_sym_struct] = ACTIONS(1072), + [anon_sym_union] = ACTIONS(1072), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_else] = ACTIONS(1076), + [anon_sym_switch] = ACTIONS(1072), + [anon_sym_case] = ACTIONS(1072), + [anon_sym_default] = ACTIONS(1072), + [anon_sym_while] = ACTIONS(1072), + [anon_sym_do] = ACTIONS(1072), + [anon_sym_for] = ACTIONS(1072), + [anon_sym_return] = ACTIONS(1072), + [anon_sym_break] = ACTIONS(1072), + [anon_sym_continue] = ACTIONS(1072), + [anon_sym_goto] = ACTIONS(1072), + [anon_sym_AMP] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_DASH] = ACTIONS(1072), + [anon_sym_PLUS] = ACTIONS(1072), + [anon_sym_DASH_DASH] = ACTIONS(1074), + [anon_sym_PLUS_PLUS] = ACTIONS(1074), + [anon_sym_sizeof] = ACTIONS(1072), + [sym_number_literal] = ACTIONS(1074), + [anon_sym_L_SQUOTE] = ACTIONS(1074), + [anon_sym_u_SQUOTE] = ACTIONS(1074), + [anon_sym_U_SQUOTE] = ACTIONS(1074), + [anon_sym_u8_SQUOTE] = ACTIONS(1074), + [anon_sym_SQUOTE] = ACTIONS(1074), + [anon_sym_L_DQUOTE] = ACTIONS(1074), + [anon_sym_u_DQUOTE] = ACTIONS(1074), + [anon_sym_U_DQUOTE] = ACTIONS(1074), + [anon_sym_u8_DQUOTE] = ACTIONS(1074), + [anon_sym_DQUOTE] = ACTIONS(1074), + [sym_true] = ACTIONS(1072), + [sym_false] = ACTIONS(1072), + [sym_null] = ACTIONS(1072), + [sym_comment] = ACTIONS(3), + }, + [166] = { + [sym_identifier] = ACTIONS(1078), + [aux_sym_preproc_include_token1] = ACTIONS(1078), + [aux_sym_preproc_def_token1] = ACTIONS(1078), + [aux_sym_preproc_if_token1] = ACTIONS(1078), + [aux_sym_preproc_if_token2] = ACTIONS(1078), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1078), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1078), + [aux_sym_preproc_else_token1] = ACTIONS(1078), + [aux_sym_preproc_elif_token1] = ACTIONS(1078), + [sym_preproc_directive] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1080), + [anon_sym_typedef] = ACTIONS(1078), + [anon_sym_extern] = ACTIONS(1078), + [anon_sym___attribute__] = ACTIONS(1078), + [anon_sym_LPAREN2] = ACTIONS(1080), + [anon_sym_LBRACE] = ACTIONS(1080), + [anon_sym_STAR] = ACTIONS(1080), + [anon_sym_static] = ACTIONS(1078), + [anon_sym_auto] = ACTIONS(1078), + [anon_sym_register] = ACTIONS(1078), + [anon_sym_inline] = ACTIONS(1078), + [anon_sym_const] = ACTIONS(1078), + [anon_sym_volatile] = ACTIONS(1078), + [anon_sym_restrict] = ACTIONS(1078), + [anon_sym__Atomic] = ACTIONS(1078), + [anon_sym_signed] = ACTIONS(1078), + [anon_sym_unsigned] = ACTIONS(1078), + [anon_sym_long] = ACTIONS(1078), + [anon_sym_short] = ACTIONS(1078), + [sym_primitive_type] = ACTIONS(1078), + [anon_sym_enum] = ACTIONS(1078), + [anon_sym_struct] = ACTIONS(1078), + [anon_sym_union] = ACTIONS(1078), + [anon_sym_if] = ACTIONS(1078), + [anon_sym_else] = ACTIONS(1078), + [anon_sym_switch] = ACTIONS(1078), + [anon_sym_case] = ACTIONS(1078), + [anon_sym_default] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1078), + [anon_sym_do] = ACTIONS(1078), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_return] = ACTIONS(1078), + [anon_sym_break] = ACTIONS(1078), + [anon_sym_continue] = ACTIONS(1078), + [anon_sym_goto] = ACTIONS(1078), + [anon_sym_AMP] = ACTIONS(1080), + [anon_sym_BANG] = ACTIONS(1080), + [anon_sym_TILDE] = ACTIONS(1080), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1080), + [anon_sym_PLUS_PLUS] = ACTIONS(1080), + [anon_sym_sizeof] = ACTIONS(1078), + [sym_number_literal] = ACTIONS(1080), + [anon_sym_L_SQUOTE] = ACTIONS(1080), + [anon_sym_u_SQUOTE] = ACTIONS(1080), + [anon_sym_U_SQUOTE] = ACTIONS(1080), + [anon_sym_u8_SQUOTE] = ACTIONS(1080), + [anon_sym_SQUOTE] = ACTIONS(1080), + [anon_sym_L_DQUOTE] = ACTIONS(1080), + [anon_sym_u_DQUOTE] = ACTIONS(1080), + [anon_sym_U_DQUOTE] = ACTIONS(1080), + [anon_sym_u8_DQUOTE] = ACTIONS(1080), + [anon_sym_DQUOTE] = ACTIONS(1080), + [sym_true] = ACTIONS(1078), + [sym_false] = ACTIONS(1078), + [sym_null] = ACTIONS(1078), + [sym_comment] = ACTIONS(3), + }, + [167] = { + [sym_identifier] = ACTIONS(1082), + [aux_sym_preproc_include_token1] = ACTIONS(1082), + [aux_sym_preproc_def_token1] = ACTIONS(1082), + [aux_sym_preproc_if_token1] = ACTIONS(1082), + [aux_sym_preproc_if_token2] = ACTIONS(1082), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1082), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1082), + [aux_sym_preproc_else_token1] = ACTIONS(1082), + [aux_sym_preproc_elif_token1] = ACTIONS(1082), + [sym_preproc_directive] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1084), + [anon_sym_typedef] = ACTIONS(1082), + [anon_sym_extern] = ACTIONS(1082), + [anon_sym___attribute__] = ACTIONS(1082), + [anon_sym_LPAREN2] = ACTIONS(1084), + [anon_sym_LBRACE] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1082), + [anon_sym_auto] = ACTIONS(1082), + [anon_sym_register] = ACTIONS(1082), + [anon_sym_inline] = ACTIONS(1082), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_volatile] = ACTIONS(1082), + [anon_sym_restrict] = ACTIONS(1082), + [anon_sym__Atomic] = ACTIONS(1082), + [anon_sym_signed] = ACTIONS(1082), + [anon_sym_unsigned] = ACTIONS(1082), + [anon_sym_long] = ACTIONS(1082), + [anon_sym_short] = ACTIONS(1082), + [sym_primitive_type] = ACTIONS(1082), + [anon_sym_enum] = ACTIONS(1082), + [anon_sym_struct] = ACTIONS(1082), + [anon_sym_union] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_else] = ACTIONS(1082), + [anon_sym_switch] = ACTIONS(1082), + [anon_sym_case] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_do] = ACTIONS(1082), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_return] = ACTIONS(1082), + [anon_sym_break] = ACTIONS(1082), + [anon_sym_continue] = ACTIONS(1082), + [anon_sym_goto] = ACTIONS(1082), + [anon_sym_AMP] = ACTIONS(1084), + [anon_sym_BANG] = ACTIONS(1084), + [anon_sym_TILDE] = ACTIONS(1084), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH_DASH] = ACTIONS(1084), + [anon_sym_PLUS_PLUS] = ACTIONS(1084), + [anon_sym_sizeof] = ACTIONS(1082), + [sym_number_literal] = ACTIONS(1084), + [anon_sym_L_SQUOTE] = ACTIONS(1084), + [anon_sym_u_SQUOTE] = ACTIONS(1084), + [anon_sym_U_SQUOTE] = ACTIONS(1084), + [anon_sym_u8_SQUOTE] = ACTIONS(1084), + [anon_sym_SQUOTE] = ACTIONS(1084), + [anon_sym_L_DQUOTE] = ACTIONS(1084), + [anon_sym_u_DQUOTE] = ACTIONS(1084), + [anon_sym_U_DQUOTE] = ACTIONS(1084), + [anon_sym_u8_DQUOTE] = ACTIONS(1084), + [anon_sym_DQUOTE] = ACTIONS(1084), + [sym_true] = ACTIONS(1082), + [sym_false] = ACTIONS(1082), + [sym_null] = ACTIONS(1082), + [sym_comment] = ACTIONS(3), + }, + [168] = { + [sym_identifier] = ACTIONS(1086), + [aux_sym_preproc_include_token1] = ACTIONS(1086), + [aux_sym_preproc_def_token1] = ACTIONS(1086), + [aux_sym_preproc_if_token1] = ACTIONS(1086), + [aux_sym_preproc_if_token2] = ACTIONS(1086), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1086), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1086), + [aux_sym_preproc_else_token1] = ACTIONS(1086), + [aux_sym_preproc_elif_token1] = ACTIONS(1086), + [sym_preproc_directive] = ACTIONS(1086), + [anon_sym_SEMI] = ACTIONS(1088), + [anon_sym_typedef] = ACTIONS(1086), + [anon_sym_extern] = ACTIONS(1086), + [anon_sym___attribute__] = ACTIONS(1086), + [anon_sym_LPAREN2] = ACTIONS(1088), + [anon_sym_LBRACE] = ACTIONS(1088), + [anon_sym_STAR] = ACTIONS(1088), + [anon_sym_static] = ACTIONS(1086), + [anon_sym_auto] = ACTIONS(1086), + [anon_sym_register] = ACTIONS(1086), + [anon_sym_inline] = ACTIONS(1086), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_volatile] = ACTIONS(1086), + [anon_sym_restrict] = ACTIONS(1086), + [anon_sym__Atomic] = ACTIONS(1086), + [anon_sym_signed] = ACTIONS(1086), + [anon_sym_unsigned] = ACTIONS(1086), + [anon_sym_long] = ACTIONS(1086), + [anon_sym_short] = ACTIONS(1086), + [sym_primitive_type] = ACTIONS(1086), + [anon_sym_enum] = ACTIONS(1086), + [anon_sym_struct] = ACTIONS(1086), + [anon_sym_union] = ACTIONS(1086), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_else] = ACTIONS(1086), + [anon_sym_switch] = ACTIONS(1086), + [anon_sym_case] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(1086), + [anon_sym_while] = ACTIONS(1086), + [anon_sym_do] = ACTIONS(1086), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1086), + [anon_sym_break] = ACTIONS(1086), + [anon_sym_continue] = ACTIONS(1086), + [anon_sym_goto] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_TILDE] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_DASH_DASH] = ACTIONS(1088), + [anon_sym_PLUS_PLUS] = ACTIONS(1088), + [anon_sym_sizeof] = ACTIONS(1086), + [sym_number_literal] = ACTIONS(1088), + [anon_sym_L_SQUOTE] = ACTIONS(1088), + [anon_sym_u_SQUOTE] = ACTIONS(1088), + [anon_sym_U_SQUOTE] = ACTIONS(1088), + [anon_sym_u8_SQUOTE] = ACTIONS(1088), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_L_DQUOTE] = ACTIONS(1088), + [anon_sym_u_DQUOTE] = ACTIONS(1088), + [anon_sym_U_DQUOTE] = ACTIONS(1088), + [anon_sym_u8_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1088), + [sym_true] = ACTIONS(1086), + [sym_false] = ACTIONS(1086), + [sym_null] = ACTIONS(1086), + [sym_comment] = ACTIONS(3), + }, + [169] = { + [sym_identifier] = ACTIONS(1090), + [aux_sym_preproc_include_token1] = ACTIONS(1090), + [aux_sym_preproc_def_token1] = ACTIONS(1090), + [aux_sym_preproc_if_token1] = ACTIONS(1090), + [aux_sym_preproc_if_token2] = ACTIONS(1090), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1090), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1090), + [aux_sym_preproc_else_token1] = ACTIONS(1090), + [aux_sym_preproc_elif_token1] = ACTIONS(1090), + [sym_preproc_directive] = ACTIONS(1090), + [anon_sym_SEMI] = ACTIONS(1092), + [anon_sym_typedef] = ACTIONS(1090), + [anon_sym_extern] = ACTIONS(1090), + [anon_sym___attribute__] = ACTIONS(1090), + [anon_sym_LPAREN2] = ACTIONS(1092), + [anon_sym_LBRACE] = ACTIONS(1092), + [anon_sym_STAR] = ACTIONS(1092), + [anon_sym_static] = ACTIONS(1090), + [anon_sym_auto] = ACTIONS(1090), + [anon_sym_register] = ACTIONS(1090), + [anon_sym_inline] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_volatile] = ACTIONS(1090), + [anon_sym_restrict] = ACTIONS(1090), + [anon_sym__Atomic] = ACTIONS(1090), + [anon_sym_signed] = ACTIONS(1090), + [anon_sym_unsigned] = ACTIONS(1090), + [anon_sym_long] = ACTIONS(1090), + [anon_sym_short] = ACTIONS(1090), + [sym_primitive_type] = ACTIONS(1090), + [anon_sym_enum] = ACTIONS(1090), + [anon_sym_struct] = ACTIONS(1090), + [anon_sym_union] = ACTIONS(1090), + [anon_sym_if] = ACTIONS(1090), + [anon_sym_else] = ACTIONS(1090), + [anon_sym_switch] = ACTIONS(1090), + [anon_sym_case] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1090), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(1090), + [anon_sym_for] = ACTIONS(1090), + [anon_sym_return] = ACTIONS(1090), + [anon_sym_break] = ACTIONS(1090), + [anon_sym_continue] = ACTIONS(1090), + [anon_sym_goto] = ACTIONS(1090), + [anon_sym_AMP] = ACTIONS(1092), + [anon_sym_BANG] = ACTIONS(1092), + [anon_sym_TILDE] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_DASH_DASH] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1092), + [anon_sym_sizeof] = ACTIONS(1090), + [sym_number_literal] = ACTIONS(1092), + [anon_sym_L_SQUOTE] = ACTIONS(1092), + [anon_sym_u_SQUOTE] = ACTIONS(1092), + [anon_sym_U_SQUOTE] = ACTIONS(1092), + [anon_sym_u8_SQUOTE] = ACTIONS(1092), + [anon_sym_SQUOTE] = ACTIONS(1092), + [anon_sym_L_DQUOTE] = ACTIONS(1092), + [anon_sym_u_DQUOTE] = ACTIONS(1092), + [anon_sym_U_DQUOTE] = ACTIONS(1092), + [anon_sym_u8_DQUOTE] = ACTIONS(1092), + [anon_sym_DQUOTE] = ACTIONS(1092), + [sym_true] = ACTIONS(1090), + [sym_false] = ACTIONS(1090), + [sym_null] = ACTIONS(1090), + [sym_comment] = ACTIONS(3), + }, + [170] = { + [sym_identifier] = ACTIONS(1094), + [aux_sym_preproc_include_token1] = ACTIONS(1094), + [aux_sym_preproc_def_token1] = ACTIONS(1094), + [aux_sym_preproc_if_token1] = ACTIONS(1094), + [aux_sym_preproc_if_token2] = ACTIONS(1094), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1094), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1094), + [aux_sym_preproc_else_token1] = ACTIONS(1094), + [aux_sym_preproc_elif_token1] = ACTIONS(1094), + [sym_preproc_directive] = ACTIONS(1094), + [anon_sym_SEMI] = ACTIONS(1096), + [anon_sym_typedef] = ACTIONS(1094), + [anon_sym_extern] = ACTIONS(1094), + [anon_sym___attribute__] = ACTIONS(1094), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_LBRACE] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1096), + [anon_sym_static] = ACTIONS(1094), + [anon_sym_auto] = ACTIONS(1094), + [anon_sym_register] = ACTIONS(1094), + [anon_sym_inline] = ACTIONS(1094), + [anon_sym_const] = ACTIONS(1094), + [anon_sym_volatile] = ACTIONS(1094), + [anon_sym_restrict] = ACTIONS(1094), + [anon_sym__Atomic] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(1094), + [anon_sym_unsigned] = ACTIONS(1094), + [anon_sym_long] = ACTIONS(1094), + [anon_sym_short] = ACTIONS(1094), + [sym_primitive_type] = ACTIONS(1094), + [anon_sym_enum] = ACTIONS(1094), + [anon_sym_struct] = ACTIONS(1094), + [anon_sym_union] = ACTIONS(1094), + [anon_sym_if] = ACTIONS(1094), + [anon_sym_switch] = ACTIONS(1094), + [anon_sym_case] = ACTIONS(1094), + [anon_sym_default] = ACTIONS(1094), + [anon_sym_while] = ACTIONS(1094), + [anon_sym_do] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1094), + [anon_sym_return] = ACTIONS(1094), + [anon_sym_break] = ACTIONS(1094), + [anon_sym_continue] = ACTIONS(1094), + [anon_sym_goto] = ACTIONS(1094), + [anon_sym_AMP] = ACTIONS(1096), + [anon_sym_BANG] = ACTIONS(1096), + [anon_sym_TILDE] = ACTIONS(1096), + [anon_sym_DASH] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_PLUS_PLUS] = ACTIONS(1096), + [anon_sym_sizeof] = ACTIONS(1094), + [sym_number_literal] = ACTIONS(1096), + [anon_sym_L_SQUOTE] = ACTIONS(1096), + [anon_sym_u_SQUOTE] = ACTIONS(1096), + [anon_sym_U_SQUOTE] = ACTIONS(1096), + [anon_sym_u8_SQUOTE] = ACTIONS(1096), + [anon_sym_SQUOTE] = ACTIONS(1096), + [anon_sym_L_DQUOTE] = ACTIONS(1096), + [anon_sym_u_DQUOTE] = ACTIONS(1096), + [anon_sym_U_DQUOTE] = ACTIONS(1096), + [anon_sym_u8_DQUOTE] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(1096), + [sym_true] = ACTIONS(1094), + [sym_false] = ACTIONS(1094), + [sym_null] = ACTIONS(1094), + [sym_comment] = ACTIONS(3), + }, + [171] = { + [sym_identifier] = ACTIONS(1098), + [aux_sym_preproc_include_token1] = ACTIONS(1098), + [aux_sym_preproc_def_token1] = ACTIONS(1098), + [aux_sym_preproc_if_token1] = ACTIONS(1098), + [aux_sym_preproc_if_token2] = ACTIONS(1098), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1098), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1098), + [aux_sym_preproc_else_token1] = ACTIONS(1098), + [aux_sym_preproc_elif_token1] = ACTIONS(1098), + [sym_preproc_directive] = ACTIONS(1098), + [anon_sym_SEMI] = ACTIONS(1100), + [anon_sym_typedef] = ACTIONS(1098), + [anon_sym_extern] = ACTIONS(1098), + [anon_sym___attribute__] = ACTIONS(1098), + [anon_sym_LPAREN2] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1100), + [anon_sym_STAR] = ACTIONS(1100), + [anon_sym_static] = ACTIONS(1098), + [anon_sym_auto] = ACTIONS(1098), + [anon_sym_register] = ACTIONS(1098), + [anon_sym_inline] = ACTIONS(1098), + [anon_sym_const] = ACTIONS(1098), + [anon_sym_volatile] = ACTIONS(1098), + [anon_sym_restrict] = ACTIONS(1098), + [anon_sym__Atomic] = ACTIONS(1098), + [anon_sym_signed] = ACTIONS(1098), + [anon_sym_unsigned] = ACTIONS(1098), + [anon_sym_long] = ACTIONS(1098), + [anon_sym_short] = ACTIONS(1098), + [sym_primitive_type] = ACTIONS(1098), + [anon_sym_enum] = ACTIONS(1098), + [anon_sym_struct] = ACTIONS(1098), + [anon_sym_union] = ACTIONS(1098), + [anon_sym_if] = ACTIONS(1098), + [anon_sym_switch] = ACTIONS(1098), + [anon_sym_case] = ACTIONS(1098), + [anon_sym_default] = ACTIONS(1098), + [anon_sym_while] = ACTIONS(1098), + [anon_sym_do] = ACTIONS(1098), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_return] = ACTIONS(1098), + [anon_sym_break] = ACTIONS(1098), + [anon_sym_continue] = ACTIONS(1098), + [anon_sym_goto] = ACTIONS(1098), + [anon_sym_AMP] = ACTIONS(1100), + [anon_sym_BANG] = ACTIONS(1100), + [anon_sym_TILDE] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1098), + [anon_sym_PLUS] = ACTIONS(1098), + [anon_sym_DASH_DASH] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1100), + [anon_sym_sizeof] = ACTIONS(1098), + [sym_number_literal] = ACTIONS(1100), + [anon_sym_L_SQUOTE] = ACTIONS(1100), + [anon_sym_u_SQUOTE] = ACTIONS(1100), + [anon_sym_U_SQUOTE] = ACTIONS(1100), + [anon_sym_u8_SQUOTE] = ACTIONS(1100), + [anon_sym_SQUOTE] = ACTIONS(1100), + [anon_sym_L_DQUOTE] = ACTIONS(1100), + [anon_sym_u_DQUOTE] = ACTIONS(1100), + [anon_sym_U_DQUOTE] = ACTIONS(1100), + [anon_sym_u8_DQUOTE] = ACTIONS(1100), + [anon_sym_DQUOTE] = ACTIONS(1100), + [sym_true] = ACTIONS(1098), + [sym_false] = ACTIONS(1098), + [sym_null] = ACTIONS(1098), + [sym_comment] = ACTIONS(3), + }, + [172] = { + [sym_identifier] = ACTIONS(1102), + [aux_sym_preproc_include_token1] = ACTIONS(1102), + [aux_sym_preproc_def_token1] = ACTIONS(1102), + [aux_sym_preproc_if_token1] = ACTIONS(1102), + [aux_sym_preproc_if_token2] = ACTIONS(1102), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1102), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1102), + [aux_sym_preproc_else_token1] = ACTIONS(1102), + [aux_sym_preproc_elif_token1] = ACTIONS(1102), + [sym_preproc_directive] = ACTIONS(1102), + [anon_sym_SEMI] = ACTIONS(1104), + [anon_sym_typedef] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1102), + [anon_sym___attribute__] = ACTIONS(1102), + [anon_sym_LPAREN2] = ACTIONS(1104), + [anon_sym_LBRACE] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(1104), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_auto] = ACTIONS(1102), + [anon_sym_register] = ACTIONS(1102), + [anon_sym_inline] = ACTIONS(1102), + [anon_sym_const] = ACTIONS(1102), + [anon_sym_volatile] = ACTIONS(1102), + [anon_sym_restrict] = ACTIONS(1102), + [anon_sym__Atomic] = ACTIONS(1102), + [anon_sym_signed] = ACTIONS(1102), + [anon_sym_unsigned] = ACTIONS(1102), + [anon_sym_long] = ACTIONS(1102), + [anon_sym_short] = ACTIONS(1102), + [sym_primitive_type] = ACTIONS(1102), + [anon_sym_enum] = ACTIONS(1102), + [anon_sym_struct] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1102), + [anon_sym_if] = ACTIONS(1102), + [anon_sym_switch] = ACTIONS(1102), + [anon_sym_case] = ACTIONS(1102), + [anon_sym_default] = ACTIONS(1102), + [anon_sym_while] = ACTIONS(1102), + [anon_sym_do] = ACTIONS(1102), + [anon_sym_for] = ACTIONS(1102), + [anon_sym_return] = ACTIONS(1102), + [anon_sym_break] = ACTIONS(1102), + [anon_sym_continue] = ACTIONS(1102), + [anon_sym_goto] = ACTIONS(1102), + [anon_sym_AMP] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(1104), + [anon_sym_TILDE] = ACTIONS(1104), + [anon_sym_DASH] = ACTIONS(1102), + [anon_sym_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1104), + [anon_sym_PLUS_PLUS] = ACTIONS(1104), + [anon_sym_sizeof] = ACTIONS(1102), + [sym_number_literal] = ACTIONS(1104), + [anon_sym_L_SQUOTE] = ACTIONS(1104), + [anon_sym_u_SQUOTE] = ACTIONS(1104), + [anon_sym_U_SQUOTE] = ACTIONS(1104), + [anon_sym_u8_SQUOTE] = ACTIONS(1104), + [anon_sym_SQUOTE] = ACTIONS(1104), + [anon_sym_L_DQUOTE] = ACTIONS(1104), + [anon_sym_u_DQUOTE] = ACTIONS(1104), + [anon_sym_U_DQUOTE] = ACTIONS(1104), + [anon_sym_u8_DQUOTE] = ACTIONS(1104), + [anon_sym_DQUOTE] = ACTIONS(1104), + [sym_true] = ACTIONS(1102), + [sym_false] = ACTIONS(1102), + [sym_null] = ACTIONS(1102), + [sym_comment] = ACTIONS(3), + }, + [173] = { + [sym_identifier] = ACTIONS(1106), + [aux_sym_preproc_include_token1] = ACTIONS(1106), + [aux_sym_preproc_def_token1] = ACTIONS(1106), + [aux_sym_preproc_if_token1] = ACTIONS(1106), + [aux_sym_preproc_if_token2] = ACTIONS(1106), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1106), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1106), + [aux_sym_preproc_else_token1] = ACTIONS(1106), + [aux_sym_preproc_elif_token1] = ACTIONS(1106), + [sym_preproc_directive] = ACTIONS(1106), + [anon_sym_SEMI] = ACTIONS(1108), + [anon_sym_typedef] = ACTIONS(1106), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym___attribute__] = ACTIONS(1106), + [anon_sym_LPAREN2] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_STAR] = ACTIONS(1108), + [anon_sym_static] = ACTIONS(1106), + [anon_sym_auto] = ACTIONS(1106), + [anon_sym_register] = ACTIONS(1106), + [anon_sym_inline] = ACTIONS(1106), + [anon_sym_const] = ACTIONS(1106), + [anon_sym_volatile] = ACTIONS(1106), + [anon_sym_restrict] = ACTIONS(1106), + [anon_sym__Atomic] = ACTIONS(1106), + [anon_sym_signed] = ACTIONS(1106), + [anon_sym_unsigned] = ACTIONS(1106), + [anon_sym_long] = ACTIONS(1106), + [anon_sym_short] = ACTIONS(1106), + [sym_primitive_type] = ACTIONS(1106), + [anon_sym_enum] = ACTIONS(1106), + [anon_sym_struct] = ACTIONS(1106), + [anon_sym_union] = ACTIONS(1106), + [anon_sym_if] = ACTIONS(1106), + [anon_sym_switch] = ACTIONS(1106), + [anon_sym_case] = ACTIONS(1106), + [anon_sym_default] = ACTIONS(1106), + [anon_sym_while] = ACTIONS(1106), + [anon_sym_do] = ACTIONS(1106), + [anon_sym_for] = ACTIONS(1106), + [anon_sym_return] = ACTIONS(1106), + [anon_sym_break] = ACTIONS(1106), + [anon_sym_continue] = ACTIONS(1106), + [anon_sym_goto] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1108), + [anon_sym_BANG] = ACTIONS(1108), + [anon_sym_TILDE] = ACTIONS(1108), + [anon_sym_DASH] = ACTIONS(1106), + [anon_sym_PLUS] = ACTIONS(1106), + [anon_sym_DASH_DASH] = ACTIONS(1108), + [anon_sym_PLUS_PLUS] = ACTIONS(1108), + [anon_sym_sizeof] = ACTIONS(1106), + [sym_number_literal] = ACTIONS(1108), + [anon_sym_L_SQUOTE] = ACTIONS(1108), + [anon_sym_u_SQUOTE] = ACTIONS(1108), + [anon_sym_U_SQUOTE] = ACTIONS(1108), + [anon_sym_u8_SQUOTE] = ACTIONS(1108), + [anon_sym_SQUOTE] = ACTIONS(1108), + [anon_sym_L_DQUOTE] = ACTIONS(1108), + [anon_sym_u_DQUOTE] = ACTIONS(1108), + [anon_sym_U_DQUOTE] = ACTIONS(1108), + [anon_sym_u8_DQUOTE] = ACTIONS(1108), + [anon_sym_DQUOTE] = ACTIONS(1108), + [sym_true] = ACTIONS(1106), + [sym_false] = ACTIONS(1106), + [sym_null] = ACTIONS(1106), + [sym_comment] = ACTIONS(3), + }, + [174] = { + [sym_identifier] = ACTIONS(1110), + [aux_sym_preproc_include_token1] = ACTIONS(1110), + [aux_sym_preproc_def_token1] = ACTIONS(1110), + [aux_sym_preproc_if_token1] = ACTIONS(1110), + [aux_sym_preproc_if_token2] = ACTIONS(1110), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1110), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1110), + [aux_sym_preproc_else_token1] = ACTIONS(1110), + [aux_sym_preproc_elif_token1] = ACTIONS(1110), + [sym_preproc_directive] = ACTIONS(1110), + [anon_sym_SEMI] = ACTIONS(1112), + [anon_sym_typedef] = ACTIONS(1110), + [anon_sym_extern] = ACTIONS(1110), + [anon_sym___attribute__] = ACTIONS(1110), + [anon_sym_LPAREN2] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1112), + [anon_sym_STAR] = ACTIONS(1112), + [anon_sym_static] = ACTIONS(1110), + [anon_sym_auto] = ACTIONS(1110), + [anon_sym_register] = ACTIONS(1110), + [anon_sym_inline] = ACTIONS(1110), + [anon_sym_const] = ACTIONS(1110), + [anon_sym_volatile] = ACTIONS(1110), + [anon_sym_restrict] = ACTIONS(1110), + [anon_sym__Atomic] = ACTIONS(1110), + [anon_sym_signed] = ACTIONS(1110), + [anon_sym_unsigned] = ACTIONS(1110), + [anon_sym_long] = ACTIONS(1110), + [anon_sym_short] = ACTIONS(1110), + [sym_primitive_type] = ACTIONS(1110), + [anon_sym_enum] = ACTIONS(1110), + [anon_sym_struct] = ACTIONS(1110), + [anon_sym_union] = ACTIONS(1110), + [anon_sym_if] = ACTIONS(1110), + [anon_sym_switch] = ACTIONS(1110), + [anon_sym_case] = ACTIONS(1110), + [anon_sym_default] = ACTIONS(1110), + [anon_sym_while] = ACTIONS(1110), + [anon_sym_do] = ACTIONS(1110), + [anon_sym_for] = ACTIONS(1110), + [anon_sym_return] = ACTIONS(1110), + [anon_sym_break] = ACTIONS(1110), + [anon_sym_continue] = ACTIONS(1110), + [anon_sym_goto] = ACTIONS(1110), + [anon_sym_AMP] = ACTIONS(1112), + [anon_sym_BANG] = ACTIONS(1112), + [anon_sym_TILDE] = ACTIONS(1112), + [anon_sym_DASH] = ACTIONS(1110), + [anon_sym_PLUS] = ACTIONS(1110), + [anon_sym_DASH_DASH] = ACTIONS(1112), + [anon_sym_PLUS_PLUS] = ACTIONS(1112), + [anon_sym_sizeof] = ACTIONS(1110), + [sym_number_literal] = ACTIONS(1112), + [anon_sym_L_SQUOTE] = ACTIONS(1112), + [anon_sym_u_SQUOTE] = ACTIONS(1112), + [anon_sym_U_SQUOTE] = ACTIONS(1112), + [anon_sym_u8_SQUOTE] = ACTIONS(1112), + [anon_sym_SQUOTE] = ACTIONS(1112), + [anon_sym_L_DQUOTE] = ACTIONS(1112), + [anon_sym_u_DQUOTE] = ACTIONS(1112), + [anon_sym_U_DQUOTE] = ACTIONS(1112), + [anon_sym_u8_DQUOTE] = ACTIONS(1112), + [anon_sym_DQUOTE] = ACTIONS(1112), + [sym_true] = ACTIONS(1110), + [sym_false] = ACTIONS(1110), + [sym_null] = ACTIONS(1110), + [sym_comment] = ACTIONS(3), + }, + [175] = { + [sym_identifier] = ACTIONS(1114), + [aux_sym_preproc_include_token1] = ACTIONS(1114), + [aux_sym_preproc_def_token1] = ACTIONS(1114), + [aux_sym_preproc_if_token1] = ACTIONS(1114), + [aux_sym_preproc_if_token2] = ACTIONS(1114), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1114), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1114), + [aux_sym_preproc_else_token1] = ACTIONS(1114), + [aux_sym_preproc_elif_token1] = ACTIONS(1114), + [sym_preproc_directive] = ACTIONS(1114), + [anon_sym_SEMI] = ACTIONS(1116), + [anon_sym_typedef] = ACTIONS(1114), + [anon_sym_extern] = ACTIONS(1114), + [anon_sym___attribute__] = ACTIONS(1114), + [anon_sym_LPAREN2] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(1116), + [anon_sym_STAR] = ACTIONS(1116), + [anon_sym_static] = ACTIONS(1114), + [anon_sym_auto] = ACTIONS(1114), + [anon_sym_register] = ACTIONS(1114), + [anon_sym_inline] = ACTIONS(1114), + [anon_sym_const] = ACTIONS(1114), + [anon_sym_volatile] = ACTIONS(1114), + [anon_sym_restrict] = ACTIONS(1114), + [anon_sym__Atomic] = ACTIONS(1114), + [anon_sym_signed] = ACTIONS(1114), + [anon_sym_unsigned] = ACTIONS(1114), + [anon_sym_long] = ACTIONS(1114), + [anon_sym_short] = ACTIONS(1114), + [sym_primitive_type] = ACTIONS(1114), + [anon_sym_enum] = ACTIONS(1114), + [anon_sym_struct] = ACTIONS(1114), + [anon_sym_union] = ACTIONS(1114), + [anon_sym_if] = ACTIONS(1114), + [anon_sym_switch] = ACTIONS(1114), + [anon_sym_case] = ACTIONS(1114), + [anon_sym_default] = ACTIONS(1114), + [anon_sym_while] = ACTIONS(1114), + [anon_sym_do] = ACTIONS(1114), + [anon_sym_for] = ACTIONS(1114), + [anon_sym_return] = ACTIONS(1114), + [anon_sym_break] = ACTIONS(1114), + [anon_sym_continue] = ACTIONS(1114), + [anon_sym_goto] = ACTIONS(1114), + [anon_sym_AMP] = ACTIONS(1116), + [anon_sym_BANG] = ACTIONS(1116), + [anon_sym_TILDE] = ACTIONS(1116), + [anon_sym_DASH] = ACTIONS(1114), + [anon_sym_PLUS] = ACTIONS(1114), + [anon_sym_DASH_DASH] = ACTIONS(1116), + [anon_sym_PLUS_PLUS] = ACTIONS(1116), + [anon_sym_sizeof] = ACTIONS(1114), + [sym_number_literal] = ACTIONS(1116), + [anon_sym_L_SQUOTE] = ACTIONS(1116), + [anon_sym_u_SQUOTE] = ACTIONS(1116), + [anon_sym_U_SQUOTE] = ACTIONS(1116), + [anon_sym_u8_SQUOTE] = ACTIONS(1116), + [anon_sym_SQUOTE] = ACTIONS(1116), + [anon_sym_L_DQUOTE] = ACTIONS(1116), + [anon_sym_u_DQUOTE] = ACTIONS(1116), + [anon_sym_U_DQUOTE] = ACTIONS(1116), + [anon_sym_u8_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(1116), + [sym_true] = ACTIONS(1114), + [sym_false] = ACTIONS(1114), + [sym_null] = ACTIONS(1114), + [sym_comment] = ACTIONS(3), + }, + [176] = { + [sym_identifier] = ACTIONS(1118), + [aux_sym_preproc_include_token1] = ACTIONS(1118), + [aux_sym_preproc_def_token1] = ACTIONS(1118), + [aux_sym_preproc_if_token1] = ACTIONS(1118), + [aux_sym_preproc_if_token2] = ACTIONS(1118), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1118), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1118), + [aux_sym_preproc_else_token1] = ACTIONS(1118), + [aux_sym_preproc_elif_token1] = ACTIONS(1118), + [sym_preproc_directive] = ACTIONS(1118), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_typedef] = ACTIONS(1118), + [anon_sym_extern] = ACTIONS(1118), + [anon_sym___attribute__] = ACTIONS(1118), + [anon_sym_LPAREN2] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1120), + [anon_sym_STAR] = ACTIONS(1120), + [anon_sym_static] = ACTIONS(1118), + [anon_sym_auto] = ACTIONS(1118), + [anon_sym_register] = ACTIONS(1118), + [anon_sym_inline] = ACTIONS(1118), + [anon_sym_const] = ACTIONS(1118), + [anon_sym_volatile] = ACTIONS(1118), + [anon_sym_restrict] = ACTIONS(1118), + [anon_sym__Atomic] = ACTIONS(1118), + [anon_sym_signed] = ACTIONS(1118), + [anon_sym_unsigned] = ACTIONS(1118), + [anon_sym_long] = ACTIONS(1118), + [anon_sym_short] = ACTIONS(1118), + [sym_primitive_type] = ACTIONS(1118), + [anon_sym_enum] = ACTIONS(1118), + [anon_sym_struct] = ACTIONS(1118), + [anon_sym_union] = ACTIONS(1118), + [anon_sym_if] = ACTIONS(1118), + [anon_sym_switch] = ACTIONS(1118), + [anon_sym_case] = ACTIONS(1118), + [anon_sym_default] = ACTIONS(1118), + [anon_sym_while] = ACTIONS(1118), + [anon_sym_do] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1118), + [anon_sym_return] = ACTIONS(1118), + [anon_sym_break] = ACTIONS(1118), + [anon_sym_continue] = ACTIONS(1118), + [anon_sym_goto] = ACTIONS(1118), + [anon_sym_AMP] = ACTIONS(1120), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_DASH] = ACTIONS(1118), + [anon_sym_PLUS] = ACTIONS(1118), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_sizeof] = ACTIONS(1118), + [sym_number_literal] = ACTIONS(1120), + [anon_sym_L_SQUOTE] = ACTIONS(1120), + [anon_sym_u_SQUOTE] = ACTIONS(1120), + [anon_sym_U_SQUOTE] = ACTIONS(1120), + [anon_sym_u8_SQUOTE] = ACTIONS(1120), + [anon_sym_SQUOTE] = ACTIONS(1120), + [anon_sym_L_DQUOTE] = ACTIONS(1120), + [anon_sym_u_DQUOTE] = ACTIONS(1120), + [anon_sym_U_DQUOTE] = ACTIONS(1120), + [anon_sym_u8_DQUOTE] = ACTIONS(1120), + [anon_sym_DQUOTE] = ACTIONS(1120), + [sym_true] = ACTIONS(1118), + [sym_false] = ACTIONS(1118), + [sym_null] = ACTIONS(1118), + [sym_comment] = ACTIONS(3), + }, + [177] = { + [sym_identifier] = ACTIONS(1122), + [aux_sym_preproc_include_token1] = ACTIONS(1122), + [aux_sym_preproc_def_token1] = ACTIONS(1122), + [aux_sym_preproc_if_token1] = ACTIONS(1122), + [aux_sym_preproc_if_token2] = ACTIONS(1122), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1122), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1122), + [aux_sym_preproc_else_token1] = ACTIONS(1122), + [aux_sym_preproc_elif_token1] = ACTIONS(1122), + [sym_preproc_directive] = ACTIONS(1122), + [anon_sym_SEMI] = ACTIONS(1124), + [anon_sym_typedef] = ACTIONS(1122), + [anon_sym_extern] = ACTIONS(1122), + [anon_sym___attribute__] = ACTIONS(1122), + [anon_sym_LPAREN2] = ACTIONS(1124), + [anon_sym_LBRACE] = ACTIONS(1124), + [anon_sym_STAR] = ACTIONS(1124), + [anon_sym_static] = ACTIONS(1122), + [anon_sym_auto] = ACTIONS(1122), + [anon_sym_register] = ACTIONS(1122), + [anon_sym_inline] = ACTIONS(1122), + [anon_sym_const] = ACTIONS(1122), + [anon_sym_volatile] = ACTIONS(1122), + [anon_sym_restrict] = ACTIONS(1122), + [anon_sym__Atomic] = ACTIONS(1122), + [anon_sym_signed] = ACTIONS(1122), + [anon_sym_unsigned] = ACTIONS(1122), + [anon_sym_long] = ACTIONS(1122), + [anon_sym_short] = ACTIONS(1122), + [sym_primitive_type] = ACTIONS(1122), + [anon_sym_enum] = ACTIONS(1122), + [anon_sym_struct] = ACTIONS(1122), + [anon_sym_union] = ACTIONS(1122), + [anon_sym_if] = ACTIONS(1122), + [anon_sym_switch] = ACTIONS(1122), + [anon_sym_case] = ACTIONS(1122), + [anon_sym_default] = ACTIONS(1122), + [anon_sym_while] = ACTIONS(1122), + [anon_sym_do] = ACTIONS(1122), + [anon_sym_for] = ACTIONS(1122), + [anon_sym_return] = ACTIONS(1122), + [anon_sym_break] = ACTIONS(1122), + [anon_sym_continue] = ACTIONS(1122), + [anon_sym_goto] = ACTIONS(1122), + [anon_sym_AMP] = ACTIONS(1124), + [anon_sym_BANG] = ACTIONS(1124), + [anon_sym_TILDE] = ACTIONS(1124), + [anon_sym_DASH] = ACTIONS(1122), + [anon_sym_PLUS] = ACTIONS(1122), + [anon_sym_DASH_DASH] = ACTIONS(1124), + [anon_sym_PLUS_PLUS] = ACTIONS(1124), + [anon_sym_sizeof] = ACTIONS(1122), + [sym_number_literal] = ACTIONS(1124), + [anon_sym_L_SQUOTE] = ACTIONS(1124), + [anon_sym_u_SQUOTE] = ACTIONS(1124), + [anon_sym_U_SQUOTE] = ACTIONS(1124), + [anon_sym_u8_SQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1124), + [anon_sym_L_DQUOTE] = ACTIONS(1124), + [anon_sym_u_DQUOTE] = ACTIONS(1124), + [anon_sym_U_DQUOTE] = ACTIONS(1124), + [anon_sym_u8_DQUOTE] = ACTIONS(1124), + [anon_sym_DQUOTE] = ACTIONS(1124), + [sym_true] = ACTIONS(1122), + [sym_false] = ACTIONS(1122), + [sym_null] = ACTIONS(1122), + [sym_comment] = ACTIONS(3), + }, + [178] = { + [sym_identifier] = ACTIONS(1126), + [aux_sym_preproc_include_token1] = ACTIONS(1126), + [aux_sym_preproc_def_token1] = ACTIONS(1126), + [aux_sym_preproc_if_token1] = ACTIONS(1126), + [aux_sym_preproc_if_token2] = ACTIONS(1126), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1126), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1126), + [aux_sym_preproc_else_token1] = ACTIONS(1126), + [aux_sym_preproc_elif_token1] = ACTIONS(1126), + [sym_preproc_directive] = ACTIONS(1126), + [anon_sym_SEMI] = ACTIONS(1128), + [anon_sym_typedef] = ACTIONS(1126), + [anon_sym_extern] = ACTIONS(1126), + [anon_sym___attribute__] = ACTIONS(1126), + [anon_sym_LPAREN2] = ACTIONS(1128), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_STAR] = ACTIONS(1128), + [anon_sym_static] = ACTIONS(1126), + [anon_sym_auto] = ACTIONS(1126), + [anon_sym_register] = ACTIONS(1126), + [anon_sym_inline] = ACTIONS(1126), + [anon_sym_const] = ACTIONS(1126), + [anon_sym_volatile] = ACTIONS(1126), + [anon_sym_restrict] = ACTIONS(1126), + [anon_sym__Atomic] = ACTIONS(1126), + [anon_sym_signed] = ACTIONS(1126), + [anon_sym_unsigned] = ACTIONS(1126), + [anon_sym_long] = ACTIONS(1126), + [anon_sym_short] = ACTIONS(1126), + [sym_primitive_type] = ACTIONS(1126), + [anon_sym_enum] = ACTIONS(1126), + [anon_sym_struct] = ACTIONS(1126), + [anon_sym_union] = ACTIONS(1126), + [anon_sym_if] = ACTIONS(1126), + [anon_sym_switch] = ACTIONS(1126), + [anon_sym_case] = ACTIONS(1126), + [anon_sym_default] = ACTIONS(1126), + [anon_sym_while] = ACTIONS(1126), + [anon_sym_do] = ACTIONS(1126), + [anon_sym_for] = ACTIONS(1126), + [anon_sym_return] = ACTIONS(1126), + [anon_sym_break] = ACTIONS(1126), + [anon_sym_continue] = ACTIONS(1126), + [anon_sym_goto] = ACTIONS(1126), + [anon_sym_AMP] = ACTIONS(1128), + [anon_sym_BANG] = ACTIONS(1128), + [anon_sym_TILDE] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1126), + [anon_sym_PLUS] = ACTIONS(1126), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_sizeof] = ACTIONS(1126), + [sym_number_literal] = ACTIONS(1128), + [anon_sym_L_SQUOTE] = ACTIONS(1128), + [anon_sym_u_SQUOTE] = ACTIONS(1128), + [anon_sym_U_SQUOTE] = ACTIONS(1128), + [anon_sym_u8_SQUOTE] = ACTIONS(1128), + [anon_sym_SQUOTE] = ACTIONS(1128), + [anon_sym_L_DQUOTE] = ACTIONS(1128), + [anon_sym_u_DQUOTE] = ACTIONS(1128), + [anon_sym_U_DQUOTE] = ACTIONS(1128), + [anon_sym_u8_DQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE] = ACTIONS(1128), + [sym_true] = ACTIONS(1126), + [sym_false] = ACTIONS(1126), + [sym_null] = ACTIONS(1126), + [sym_comment] = ACTIONS(3), + }, + [179] = { + [sym_identifier] = ACTIONS(1130), + [aux_sym_preproc_include_token1] = ACTIONS(1130), + [aux_sym_preproc_def_token1] = ACTIONS(1130), + [aux_sym_preproc_if_token1] = ACTIONS(1130), + [aux_sym_preproc_if_token2] = ACTIONS(1130), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1130), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1130), + [aux_sym_preproc_else_token1] = ACTIONS(1130), + [aux_sym_preproc_elif_token1] = ACTIONS(1130), + [sym_preproc_directive] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(1132), + [anon_sym_typedef] = ACTIONS(1130), + [anon_sym_extern] = ACTIONS(1130), + [anon_sym___attribute__] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_STAR] = ACTIONS(1132), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_auto] = ACTIONS(1130), + [anon_sym_register] = ACTIONS(1130), + [anon_sym_inline] = ACTIONS(1130), + [anon_sym_const] = ACTIONS(1130), + [anon_sym_volatile] = ACTIONS(1130), + [anon_sym_restrict] = ACTIONS(1130), + [anon_sym__Atomic] = ACTIONS(1130), + [anon_sym_signed] = ACTIONS(1130), + [anon_sym_unsigned] = ACTIONS(1130), + [anon_sym_long] = ACTIONS(1130), + [anon_sym_short] = ACTIONS(1130), + [sym_primitive_type] = ACTIONS(1130), + [anon_sym_enum] = ACTIONS(1130), + [anon_sym_struct] = ACTIONS(1130), + [anon_sym_union] = ACTIONS(1130), + [anon_sym_if] = ACTIONS(1130), + [anon_sym_switch] = ACTIONS(1130), + [anon_sym_case] = ACTIONS(1130), + [anon_sym_default] = ACTIONS(1130), + [anon_sym_while] = ACTIONS(1130), + [anon_sym_do] = ACTIONS(1130), + [anon_sym_for] = ACTIONS(1130), + [anon_sym_return] = ACTIONS(1130), + [anon_sym_break] = ACTIONS(1130), + [anon_sym_continue] = ACTIONS(1130), + [anon_sym_goto] = ACTIONS(1130), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_BANG] = ACTIONS(1132), + [anon_sym_TILDE] = ACTIONS(1132), + [anon_sym_DASH] = ACTIONS(1130), + [anon_sym_PLUS] = ACTIONS(1130), + [anon_sym_DASH_DASH] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1132), + [anon_sym_sizeof] = ACTIONS(1130), + [sym_number_literal] = ACTIONS(1132), + [anon_sym_L_SQUOTE] = ACTIONS(1132), + [anon_sym_u_SQUOTE] = ACTIONS(1132), + [anon_sym_U_SQUOTE] = ACTIONS(1132), + [anon_sym_u8_SQUOTE] = ACTIONS(1132), + [anon_sym_SQUOTE] = ACTIONS(1132), + [anon_sym_L_DQUOTE] = ACTIONS(1132), + [anon_sym_u_DQUOTE] = ACTIONS(1132), + [anon_sym_U_DQUOTE] = ACTIONS(1132), + [anon_sym_u8_DQUOTE] = ACTIONS(1132), + [anon_sym_DQUOTE] = ACTIONS(1132), + [sym_true] = ACTIONS(1130), + [sym_false] = ACTIONS(1130), + [sym_null] = ACTIONS(1130), + [sym_comment] = ACTIONS(3), + }, + [180] = { + [sym_identifier] = ACTIONS(1134), + [aux_sym_preproc_include_token1] = ACTIONS(1134), + [aux_sym_preproc_def_token1] = ACTIONS(1134), + [aux_sym_preproc_if_token1] = ACTIONS(1134), + [aux_sym_preproc_if_token2] = ACTIONS(1134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1134), + [aux_sym_preproc_else_token1] = ACTIONS(1134), + [aux_sym_preproc_elif_token1] = ACTIONS(1134), + [sym_preproc_directive] = ACTIONS(1134), + [anon_sym_SEMI] = ACTIONS(1136), + [anon_sym_typedef] = ACTIONS(1134), + [anon_sym_extern] = ACTIONS(1134), + [anon_sym___attribute__] = ACTIONS(1134), + [anon_sym_LPAREN2] = ACTIONS(1136), + [anon_sym_LBRACE] = ACTIONS(1136), + [anon_sym_STAR] = ACTIONS(1136), + [anon_sym_static] = ACTIONS(1134), + [anon_sym_auto] = ACTIONS(1134), + [anon_sym_register] = ACTIONS(1134), + [anon_sym_inline] = ACTIONS(1134), + [anon_sym_const] = ACTIONS(1134), + [anon_sym_volatile] = ACTIONS(1134), + [anon_sym_restrict] = ACTIONS(1134), + [anon_sym__Atomic] = ACTIONS(1134), + [anon_sym_signed] = ACTIONS(1134), + [anon_sym_unsigned] = ACTIONS(1134), + [anon_sym_long] = ACTIONS(1134), + [anon_sym_short] = ACTIONS(1134), + [sym_primitive_type] = ACTIONS(1134), + [anon_sym_enum] = ACTIONS(1134), + [anon_sym_struct] = ACTIONS(1134), + [anon_sym_union] = ACTIONS(1134), + [anon_sym_if] = ACTIONS(1134), + [anon_sym_switch] = ACTIONS(1134), + [anon_sym_case] = ACTIONS(1134), + [anon_sym_default] = ACTIONS(1134), + [anon_sym_while] = ACTIONS(1134), + [anon_sym_do] = ACTIONS(1134), + [anon_sym_for] = ACTIONS(1134), + [anon_sym_return] = ACTIONS(1134), + [anon_sym_break] = ACTIONS(1134), + [anon_sym_continue] = ACTIONS(1134), + [anon_sym_goto] = ACTIONS(1134), + [anon_sym_AMP] = ACTIONS(1136), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1136), + [anon_sym_sizeof] = ACTIONS(1134), + [sym_number_literal] = ACTIONS(1136), + [anon_sym_L_SQUOTE] = ACTIONS(1136), + [anon_sym_u_SQUOTE] = ACTIONS(1136), + [anon_sym_U_SQUOTE] = ACTIONS(1136), + [anon_sym_u8_SQUOTE] = ACTIONS(1136), + [anon_sym_SQUOTE] = ACTIONS(1136), + [anon_sym_L_DQUOTE] = ACTIONS(1136), + [anon_sym_u_DQUOTE] = ACTIONS(1136), + [anon_sym_U_DQUOTE] = ACTIONS(1136), + [anon_sym_u8_DQUOTE] = ACTIONS(1136), + [anon_sym_DQUOTE] = ACTIONS(1136), + [sym_true] = ACTIONS(1134), + [sym_false] = ACTIONS(1134), + [sym_null] = ACTIONS(1134), + [sym_comment] = ACTIONS(3), + }, + [181] = { + [sym_identifier] = ACTIONS(1138), + [aux_sym_preproc_include_token1] = ACTIONS(1138), + [aux_sym_preproc_def_token1] = ACTIONS(1138), + [aux_sym_preproc_if_token1] = ACTIONS(1138), + [aux_sym_preproc_if_token2] = ACTIONS(1138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1138), + [aux_sym_preproc_else_token1] = ACTIONS(1138), + [aux_sym_preproc_elif_token1] = ACTIONS(1138), + [sym_preproc_directive] = ACTIONS(1138), + [anon_sym_SEMI] = ACTIONS(1140), + [anon_sym_typedef] = ACTIONS(1138), + [anon_sym_extern] = ACTIONS(1138), + [anon_sym___attribute__] = ACTIONS(1138), + [anon_sym_LPAREN2] = ACTIONS(1140), + [anon_sym_LBRACE] = ACTIONS(1140), + [anon_sym_STAR] = ACTIONS(1140), + [anon_sym_static] = ACTIONS(1138), + [anon_sym_auto] = ACTIONS(1138), + [anon_sym_register] = ACTIONS(1138), + [anon_sym_inline] = ACTIONS(1138), + [anon_sym_const] = ACTIONS(1138), + [anon_sym_volatile] = ACTIONS(1138), + [anon_sym_restrict] = ACTIONS(1138), + [anon_sym__Atomic] = ACTIONS(1138), + [anon_sym_signed] = ACTIONS(1138), + [anon_sym_unsigned] = ACTIONS(1138), + [anon_sym_long] = ACTIONS(1138), + [anon_sym_short] = ACTIONS(1138), + [sym_primitive_type] = ACTIONS(1138), + [anon_sym_enum] = ACTIONS(1138), + [anon_sym_struct] = ACTIONS(1138), + [anon_sym_union] = ACTIONS(1138), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_switch] = ACTIONS(1138), + [anon_sym_case] = ACTIONS(1138), + [anon_sym_default] = ACTIONS(1138), + [anon_sym_while] = ACTIONS(1138), + [anon_sym_do] = ACTIONS(1138), + [anon_sym_for] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1138), + [anon_sym_break] = ACTIONS(1138), + [anon_sym_continue] = ACTIONS(1138), + [anon_sym_goto] = ACTIONS(1138), + [anon_sym_AMP] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(1140), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_sizeof] = ACTIONS(1138), + [sym_number_literal] = ACTIONS(1140), + [anon_sym_L_SQUOTE] = ACTIONS(1140), + [anon_sym_u_SQUOTE] = ACTIONS(1140), + [anon_sym_U_SQUOTE] = ACTIONS(1140), + [anon_sym_u8_SQUOTE] = ACTIONS(1140), + [anon_sym_SQUOTE] = ACTIONS(1140), + [anon_sym_L_DQUOTE] = ACTIONS(1140), + [anon_sym_u_DQUOTE] = ACTIONS(1140), + [anon_sym_U_DQUOTE] = ACTIONS(1140), + [anon_sym_u8_DQUOTE] = ACTIONS(1140), + [anon_sym_DQUOTE] = ACTIONS(1140), + [sym_true] = ACTIONS(1138), + [sym_false] = ACTIONS(1138), + [sym_null] = ACTIONS(1138), + [sym_comment] = ACTIONS(3), + }, + [182] = { + [sym_identifier] = ACTIONS(1142), + [aux_sym_preproc_include_token1] = ACTIONS(1142), + [aux_sym_preproc_def_token1] = ACTIONS(1142), + [aux_sym_preproc_if_token1] = ACTIONS(1142), + [aux_sym_preproc_if_token2] = ACTIONS(1142), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1142), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1142), + [aux_sym_preproc_else_token1] = ACTIONS(1142), + [aux_sym_preproc_elif_token1] = ACTIONS(1142), + [sym_preproc_directive] = ACTIONS(1142), + [anon_sym_SEMI] = ACTIONS(1144), + [anon_sym_typedef] = ACTIONS(1142), + [anon_sym_extern] = ACTIONS(1142), + [anon_sym___attribute__] = ACTIONS(1142), + [anon_sym_LPAREN2] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(1144), + [anon_sym_STAR] = ACTIONS(1144), + [anon_sym_static] = ACTIONS(1142), + [anon_sym_auto] = ACTIONS(1142), + [anon_sym_register] = ACTIONS(1142), + [anon_sym_inline] = ACTIONS(1142), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_volatile] = ACTIONS(1142), + [anon_sym_restrict] = ACTIONS(1142), + [anon_sym__Atomic] = ACTIONS(1142), + [anon_sym_signed] = ACTIONS(1142), + [anon_sym_unsigned] = ACTIONS(1142), + [anon_sym_long] = ACTIONS(1142), + [anon_sym_short] = ACTIONS(1142), + [sym_primitive_type] = ACTIONS(1142), + [anon_sym_enum] = ACTIONS(1142), + [anon_sym_struct] = ACTIONS(1142), + [anon_sym_union] = ACTIONS(1142), + [anon_sym_if] = ACTIONS(1142), + [anon_sym_switch] = ACTIONS(1142), + [anon_sym_case] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(1142), + [anon_sym_while] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_break] = ACTIONS(1142), + [anon_sym_continue] = ACTIONS(1142), + [anon_sym_goto] = ACTIONS(1142), + [anon_sym_AMP] = ACTIONS(1144), + [anon_sym_BANG] = ACTIONS(1144), + [anon_sym_TILDE] = ACTIONS(1144), + [anon_sym_DASH] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1142), + [anon_sym_DASH_DASH] = ACTIONS(1144), + [anon_sym_PLUS_PLUS] = ACTIONS(1144), + [anon_sym_sizeof] = ACTIONS(1142), + [sym_number_literal] = ACTIONS(1144), + [anon_sym_L_SQUOTE] = ACTIONS(1144), + [anon_sym_u_SQUOTE] = ACTIONS(1144), + [anon_sym_U_SQUOTE] = ACTIONS(1144), + [anon_sym_u8_SQUOTE] = ACTIONS(1144), + [anon_sym_SQUOTE] = ACTIONS(1144), + [anon_sym_L_DQUOTE] = ACTIONS(1144), + [anon_sym_u_DQUOTE] = ACTIONS(1144), + [anon_sym_U_DQUOTE] = ACTIONS(1144), + [anon_sym_u8_DQUOTE] = ACTIONS(1144), + [anon_sym_DQUOTE] = ACTIONS(1144), + [sym_true] = ACTIONS(1142), + [sym_false] = ACTIONS(1142), + [sym_null] = ACTIONS(1142), + [sym_comment] = ACTIONS(3), + }, + [183] = { + [sym_identifier] = ACTIONS(1146), + [aux_sym_preproc_include_token1] = ACTIONS(1146), + [aux_sym_preproc_def_token1] = ACTIONS(1146), + [aux_sym_preproc_if_token1] = ACTIONS(1146), + [aux_sym_preproc_if_token2] = ACTIONS(1146), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1146), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1146), + [aux_sym_preproc_else_token1] = ACTIONS(1146), + [aux_sym_preproc_elif_token1] = ACTIONS(1146), + [sym_preproc_directive] = ACTIONS(1146), + [anon_sym_SEMI] = ACTIONS(1148), + [anon_sym_typedef] = ACTIONS(1146), + [anon_sym_extern] = ACTIONS(1146), + [anon_sym___attribute__] = ACTIONS(1146), + [anon_sym_LPAREN2] = ACTIONS(1148), + [anon_sym_LBRACE] = ACTIONS(1148), + [anon_sym_STAR] = ACTIONS(1148), + [anon_sym_static] = ACTIONS(1146), + [anon_sym_auto] = ACTIONS(1146), + [anon_sym_register] = ACTIONS(1146), + [anon_sym_inline] = ACTIONS(1146), + [anon_sym_const] = ACTIONS(1146), + [anon_sym_volatile] = ACTIONS(1146), + [anon_sym_restrict] = ACTIONS(1146), + [anon_sym__Atomic] = ACTIONS(1146), + [anon_sym_signed] = ACTIONS(1146), + [anon_sym_unsigned] = ACTIONS(1146), + [anon_sym_long] = ACTIONS(1146), + [anon_sym_short] = ACTIONS(1146), + [sym_primitive_type] = ACTIONS(1146), + [anon_sym_enum] = ACTIONS(1146), + [anon_sym_struct] = ACTIONS(1146), + [anon_sym_union] = ACTIONS(1146), + [anon_sym_if] = ACTIONS(1146), + [anon_sym_switch] = ACTIONS(1146), + [anon_sym_case] = ACTIONS(1146), + [anon_sym_default] = ACTIONS(1146), + [anon_sym_while] = ACTIONS(1146), + [anon_sym_do] = ACTIONS(1146), + [anon_sym_for] = ACTIONS(1146), + [anon_sym_return] = ACTIONS(1146), + [anon_sym_break] = ACTIONS(1146), + [anon_sym_continue] = ACTIONS(1146), + [anon_sym_goto] = ACTIONS(1146), + [anon_sym_AMP] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1146), + [anon_sym_DASH_DASH] = ACTIONS(1148), + [anon_sym_PLUS_PLUS] = ACTIONS(1148), + [anon_sym_sizeof] = ACTIONS(1146), + [sym_number_literal] = ACTIONS(1148), + [anon_sym_L_SQUOTE] = ACTIONS(1148), + [anon_sym_u_SQUOTE] = ACTIONS(1148), + [anon_sym_U_SQUOTE] = ACTIONS(1148), + [anon_sym_u8_SQUOTE] = ACTIONS(1148), + [anon_sym_SQUOTE] = ACTIONS(1148), + [anon_sym_L_DQUOTE] = ACTIONS(1148), + [anon_sym_u_DQUOTE] = ACTIONS(1148), + [anon_sym_U_DQUOTE] = ACTIONS(1148), + [anon_sym_u8_DQUOTE] = ACTIONS(1148), + [anon_sym_DQUOTE] = ACTIONS(1148), + [sym_true] = ACTIONS(1146), + [sym_false] = ACTIONS(1146), + [sym_null] = ACTIONS(1146), + [sym_comment] = ACTIONS(3), + }, + [184] = { + [sym_identifier] = ACTIONS(1150), + [aux_sym_preproc_include_token1] = ACTIONS(1150), + [aux_sym_preproc_def_token1] = ACTIONS(1150), + [aux_sym_preproc_if_token1] = ACTIONS(1150), + [aux_sym_preproc_if_token2] = ACTIONS(1150), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1150), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1150), + [aux_sym_preproc_else_token1] = ACTIONS(1150), + [aux_sym_preproc_elif_token1] = ACTIONS(1150), + [sym_preproc_directive] = ACTIONS(1150), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym_typedef] = ACTIONS(1150), + [anon_sym_extern] = ACTIONS(1150), + [anon_sym___attribute__] = ACTIONS(1150), + [anon_sym_LPAREN2] = ACTIONS(1152), + [anon_sym_LBRACE] = ACTIONS(1152), + [anon_sym_STAR] = ACTIONS(1152), + [anon_sym_static] = ACTIONS(1150), + [anon_sym_auto] = ACTIONS(1150), + [anon_sym_register] = ACTIONS(1150), + [anon_sym_inline] = ACTIONS(1150), + [anon_sym_const] = ACTIONS(1150), + [anon_sym_volatile] = ACTIONS(1150), + [anon_sym_restrict] = ACTIONS(1150), + [anon_sym__Atomic] = ACTIONS(1150), + [anon_sym_signed] = ACTIONS(1150), + [anon_sym_unsigned] = ACTIONS(1150), + [anon_sym_long] = ACTIONS(1150), + [anon_sym_short] = ACTIONS(1150), + [sym_primitive_type] = ACTIONS(1150), + [anon_sym_enum] = ACTIONS(1150), + [anon_sym_struct] = ACTIONS(1150), + [anon_sym_union] = ACTIONS(1150), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(1150), + [anon_sym_case] = ACTIONS(1150), + [anon_sym_default] = ACTIONS(1150), + [anon_sym_while] = ACTIONS(1150), + [anon_sym_do] = ACTIONS(1150), + [anon_sym_for] = ACTIONS(1150), + [anon_sym_return] = ACTIONS(1150), + [anon_sym_break] = ACTIONS(1150), + [anon_sym_continue] = ACTIONS(1150), + [anon_sym_goto] = ACTIONS(1150), + [anon_sym_AMP] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_TILDE] = ACTIONS(1152), + [anon_sym_DASH] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1150), + [anon_sym_DASH_DASH] = ACTIONS(1152), + [anon_sym_PLUS_PLUS] = ACTIONS(1152), + [anon_sym_sizeof] = ACTIONS(1150), + [sym_number_literal] = ACTIONS(1152), + [anon_sym_L_SQUOTE] = ACTIONS(1152), + [anon_sym_u_SQUOTE] = ACTIONS(1152), + [anon_sym_U_SQUOTE] = ACTIONS(1152), + [anon_sym_u8_SQUOTE] = ACTIONS(1152), + [anon_sym_SQUOTE] = ACTIONS(1152), + [anon_sym_L_DQUOTE] = ACTIONS(1152), + [anon_sym_u_DQUOTE] = ACTIONS(1152), + [anon_sym_U_DQUOTE] = ACTIONS(1152), + [anon_sym_u8_DQUOTE] = ACTIONS(1152), + [anon_sym_DQUOTE] = ACTIONS(1152), + [sym_true] = ACTIONS(1150), + [sym_false] = ACTIONS(1150), + [sym_null] = ACTIONS(1150), + [sym_comment] = ACTIONS(3), + }, + [185] = { + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token2] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [aux_sym_preproc_else_token1] = ACTIONS(1154), + [aux_sym_preproc_elif_token1] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [sym_null] = ACTIONS(1154), + [sym_comment] = ACTIONS(3), + }, + [186] = { + [sym_identifier] = ACTIONS(1158), + [aux_sym_preproc_include_token1] = ACTIONS(1158), + [aux_sym_preproc_def_token1] = ACTIONS(1158), + [aux_sym_preproc_if_token1] = ACTIONS(1158), + [aux_sym_preproc_if_token2] = ACTIONS(1158), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1158), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1158), + [aux_sym_preproc_else_token1] = ACTIONS(1158), + [aux_sym_preproc_elif_token1] = ACTIONS(1158), + [sym_preproc_directive] = ACTIONS(1158), + [anon_sym_SEMI] = ACTIONS(1160), + [anon_sym_typedef] = ACTIONS(1158), + [anon_sym_extern] = ACTIONS(1158), + [anon_sym___attribute__] = ACTIONS(1158), + [anon_sym_LPAREN2] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(1160), + [anon_sym_STAR] = ACTIONS(1160), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_auto] = ACTIONS(1158), + [anon_sym_register] = ACTIONS(1158), + [anon_sym_inline] = ACTIONS(1158), + [anon_sym_const] = ACTIONS(1158), + [anon_sym_volatile] = ACTIONS(1158), + [anon_sym_restrict] = ACTIONS(1158), + [anon_sym__Atomic] = ACTIONS(1158), + [anon_sym_signed] = ACTIONS(1158), + [anon_sym_unsigned] = ACTIONS(1158), + [anon_sym_long] = ACTIONS(1158), + [anon_sym_short] = ACTIONS(1158), + [sym_primitive_type] = ACTIONS(1158), + [anon_sym_enum] = ACTIONS(1158), + [anon_sym_struct] = ACTIONS(1158), + [anon_sym_union] = ACTIONS(1158), + [anon_sym_if] = ACTIONS(1158), + [anon_sym_switch] = ACTIONS(1158), + [anon_sym_case] = ACTIONS(1158), + [anon_sym_default] = ACTIONS(1158), + [anon_sym_while] = ACTIONS(1158), + [anon_sym_do] = ACTIONS(1158), + [anon_sym_for] = ACTIONS(1158), + [anon_sym_return] = ACTIONS(1158), + [anon_sym_break] = ACTIONS(1158), + [anon_sym_continue] = ACTIONS(1158), + [anon_sym_goto] = ACTIONS(1158), + [anon_sym_AMP] = ACTIONS(1160), + [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_DASH] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1158), + [anon_sym_DASH_DASH] = ACTIONS(1160), + [anon_sym_PLUS_PLUS] = ACTIONS(1160), + [anon_sym_sizeof] = ACTIONS(1158), + [sym_number_literal] = ACTIONS(1160), + [anon_sym_L_SQUOTE] = ACTIONS(1160), + [anon_sym_u_SQUOTE] = ACTIONS(1160), + [anon_sym_U_SQUOTE] = ACTIONS(1160), + [anon_sym_u8_SQUOTE] = ACTIONS(1160), + [anon_sym_SQUOTE] = ACTIONS(1160), + [anon_sym_L_DQUOTE] = ACTIONS(1160), + [anon_sym_u_DQUOTE] = ACTIONS(1160), + [anon_sym_U_DQUOTE] = ACTIONS(1160), + [anon_sym_u8_DQUOTE] = ACTIONS(1160), + [anon_sym_DQUOTE] = ACTIONS(1160), + [sym_true] = ACTIONS(1158), + [sym_false] = ACTIONS(1158), + [sym_null] = ACTIONS(1158), + [sym_comment] = ACTIONS(3), + }, + [187] = { + [sym_identifier] = ACTIONS(1162), + [aux_sym_preproc_include_token1] = ACTIONS(1162), + [aux_sym_preproc_def_token1] = ACTIONS(1162), + [aux_sym_preproc_if_token1] = ACTIONS(1162), + [aux_sym_preproc_if_token2] = ACTIONS(1162), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1162), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1162), + [aux_sym_preproc_else_token1] = ACTIONS(1162), + [aux_sym_preproc_elif_token1] = ACTIONS(1162), + [sym_preproc_directive] = ACTIONS(1162), + [anon_sym_SEMI] = ACTIONS(1164), + [anon_sym_typedef] = ACTIONS(1162), + [anon_sym_extern] = ACTIONS(1162), + [anon_sym___attribute__] = ACTIONS(1162), + [anon_sym_LPAREN2] = ACTIONS(1164), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_STAR] = ACTIONS(1164), + [anon_sym_static] = ACTIONS(1162), + [anon_sym_auto] = ACTIONS(1162), + [anon_sym_register] = ACTIONS(1162), + [anon_sym_inline] = ACTIONS(1162), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_volatile] = ACTIONS(1162), + [anon_sym_restrict] = ACTIONS(1162), + [anon_sym__Atomic] = ACTIONS(1162), + [anon_sym_signed] = ACTIONS(1162), + [anon_sym_unsigned] = ACTIONS(1162), + [anon_sym_long] = ACTIONS(1162), + [anon_sym_short] = ACTIONS(1162), + [sym_primitive_type] = ACTIONS(1162), + [anon_sym_enum] = ACTIONS(1162), + [anon_sym_struct] = ACTIONS(1162), + [anon_sym_union] = ACTIONS(1162), + [anon_sym_if] = ACTIONS(1162), + [anon_sym_switch] = ACTIONS(1162), + [anon_sym_case] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(1162), + [anon_sym_while] = ACTIONS(1162), + [anon_sym_do] = ACTIONS(1162), + [anon_sym_for] = ACTIONS(1162), + [anon_sym_return] = ACTIONS(1162), + [anon_sym_break] = ACTIONS(1162), + [anon_sym_continue] = ACTIONS(1162), + [anon_sym_goto] = ACTIONS(1162), + [anon_sym_AMP] = ACTIONS(1164), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1162), + [anon_sym_PLUS] = ACTIONS(1162), + [anon_sym_DASH_DASH] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1164), + [anon_sym_sizeof] = ACTIONS(1162), + [sym_number_literal] = ACTIONS(1164), + [anon_sym_L_SQUOTE] = ACTIONS(1164), + [anon_sym_u_SQUOTE] = ACTIONS(1164), + [anon_sym_U_SQUOTE] = ACTIONS(1164), + [anon_sym_u8_SQUOTE] = ACTIONS(1164), + [anon_sym_SQUOTE] = ACTIONS(1164), + [anon_sym_L_DQUOTE] = ACTIONS(1164), + [anon_sym_u_DQUOTE] = ACTIONS(1164), + [anon_sym_U_DQUOTE] = ACTIONS(1164), + [anon_sym_u8_DQUOTE] = ACTIONS(1164), + [anon_sym_DQUOTE] = ACTIONS(1164), + [sym_true] = ACTIONS(1162), + [sym_false] = ACTIONS(1162), + [sym_null] = ACTIONS(1162), + [sym_comment] = ACTIONS(3), + }, + [188] = { + [sym_identifier] = ACTIONS(1166), + [aux_sym_preproc_include_token1] = ACTIONS(1166), + [aux_sym_preproc_def_token1] = ACTIONS(1166), + [aux_sym_preproc_if_token1] = ACTIONS(1166), + [aux_sym_preproc_if_token2] = ACTIONS(1166), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1166), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1166), + [aux_sym_preproc_else_token1] = ACTIONS(1166), + [aux_sym_preproc_elif_token1] = ACTIONS(1166), + [sym_preproc_directive] = ACTIONS(1166), + [anon_sym_SEMI] = ACTIONS(1168), + [anon_sym_typedef] = ACTIONS(1166), + [anon_sym_extern] = ACTIONS(1166), + [anon_sym___attribute__] = ACTIONS(1166), + [anon_sym_LPAREN2] = ACTIONS(1168), + [anon_sym_LBRACE] = ACTIONS(1168), + [anon_sym_STAR] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(1166), + [anon_sym_auto] = ACTIONS(1166), + [anon_sym_register] = ACTIONS(1166), + [anon_sym_inline] = ACTIONS(1166), + [anon_sym_const] = ACTIONS(1166), + [anon_sym_volatile] = ACTIONS(1166), + [anon_sym_restrict] = ACTIONS(1166), + [anon_sym__Atomic] = ACTIONS(1166), + [anon_sym_signed] = ACTIONS(1166), + [anon_sym_unsigned] = ACTIONS(1166), + [anon_sym_long] = ACTIONS(1166), + [anon_sym_short] = ACTIONS(1166), + [sym_primitive_type] = ACTIONS(1166), + [anon_sym_enum] = ACTIONS(1166), + [anon_sym_struct] = ACTIONS(1166), + [anon_sym_union] = ACTIONS(1166), + [anon_sym_if] = ACTIONS(1166), + [anon_sym_switch] = ACTIONS(1166), + [anon_sym_case] = ACTIONS(1166), + [anon_sym_default] = ACTIONS(1166), + [anon_sym_while] = ACTIONS(1166), + [anon_sym_do] = ACTIONS(1166), + [anon_sym_for] = ACTIONS(1166), + [anon_sym_return] = ACTIONS(1166), + [anon_sym_break] = ACTIONS(1166), + [anon_sym_continue] = ACTIONS(1166), + [anon_sym_goto] = ACTIONS(1166), + [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_BANG] = ACTIONS(1168), + [anon_sym_TILDE] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1168), + [anon_sym_sizeof] = ACTIONS(1166), + [sym_number_literal] = ACTIONS(1168), + [anon_sym_L_SQUOTE] = ACTIONS(1168), + [anon_sym_u_SQUOTE] = ACTIONS(1168), + [anon_sym_U_SQUOTE] = ACTIONS(1168), + [anon_sym_u8_SQUOTE] = ACTIONS(1168), + [anon_sym_SQUOTE] = ACTIONS(1168), + [anon_sym_L_DQUOTE] = ACTIONS(1168), + [anon_sym_u_DQUOTE] = ACTIONS(1168), + [anon_sym_U_DQUOTE] = ACTIONS(1168), + [anon_sym_u8_DQUOTE] = ACTIONS(1168), + [anon_sym_DQUOTE] = ACTIONS(1168), + [sym_true] = ACTIONS(1166), + [sym_false] = ACTIONS(1166), + [sym_null] = ACTIONS(1166), + [sym_comment] = ACTIONS(3), + }, + [189] = { + [sym_identifier] = ACTIONS(1170), + [aux_sym_preproc_include_token1] = ACTIONS(1170), + [aux_sym_preproc_def_token1] = ACTIONS(1170), + [aux_sym_preproc_if_token1] = ACTIONS(1170), + [aux_sym_preproc_if_token2] = ACTIONS(1170), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1170), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1170), + [aux_sym_preproc_else_token1] = ACTIONS(1170), + [aux_sym_preproc_elif_token1] = ACTIONS(1170), + [sym_preproc_directive] = ACTIONS(1170), + [anon_sym_SEMI] = ACTIONS(1172), + [anon_sym_typedef] = ACTIONS(1170), + [anon_sym_extern] = ACTIONS(1170), + [anon_sym___attribute__] = ACTIONS(1170), + [anon_sym_LPAREN2] = ACTIONS(1172), + [anon_sym_LBRACE] = ACTIONS(1172), + [anon_sym_STAR] = ACTIONS(1172), + [anon_sym_static] = ACTIONS(1170), + [anon_sym_auto] = ACTIONS(1170), + [anon_sym_register] = ACTIONS(1170), + [anon_sym_inline] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1170), + [anon_sym_volatile] = ACTIONS(1170), + [anon_sym_restrict] = ACTIONS(1170), + [anon_sym__Atomic] = ACTIONS(1170), + [anon_sym_signed] = ACTIONS(1170), + [anon_sym_unsigned] = ACTIONS(1170), + [anon_sym_long] = ACTIONS(1170), + [anon_sym_short] = ACTIONS(1170), + [sym_primitive_type] = ACTIONS(1170), + [anon_sym_enum] = ACTIONS(1170), + [anon_sym_struct] = ACTIONS(1170), + [anon_sym_union] = ACTIONS(1170), + [anon_sym_if] = ACTIONS(1170), + [anon_sym_switch] = ACTIONS(1170), + [anon_sym_case] = ACTIONS(1170), + [anon_sym_default] = ACTIONS(1170), + [anon_sym_while] = ACTIONS(1170), + [anon_sym_do] = ACTIONS(1170), + [anon_sym_for] = ACTIONS(1170), + [anon_sym_return] = ACTIONS(1170), + [anon_sym_break] = ACTIONS(1170), + [anon_sym_continue] = ACTIONS(1170), + [anon_sym_goto] = ACTIONS(1170), + [anon_sym_AMP] = ACTIONS(1172), + [anon_sym_BANG] = ACTIONS(1172), + [anon_sym_TILDE] = ACTIONS(1172), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH_DASH] = ACTIONS(1172), + [anon_sym_PLUS_PLUS] = ACTIONS(1172), + [anon_sym_sizeof] = ACTIONS(1170), + [sym_number_literal] = ACTIONS(1172), + [anon_sym_L_SQUOTE] = ACTIONS(1172), + [anon_sym_u_SQUOTE] = ACTIONS(1172), + [anon_sym_U_SQUOTE] = ACTIONS(1172), + [anon_sym_u8_SQUOTE] = ACTIONS(1172), + [anon_sym_SQUOTE] = ACTIONS(1172), + [anon_sym_L_DQUOTE] = ACTIONS(1172), + [anon_sym_u_DQUOTE] = ACTIONS(1172), + [anon_sym_U_DQUOTE] = ACTIONS(1172), + [anon_sym_u8_DQUOTE] = ACTIONS(1172), + [anon_sym_DQUOTE] = ACTIONS(1172), + [sym_true] = ACTIONS(1170), + [sym_false] = ACTIONS(1170), + [sym_null] = ACTIONS(1170), + [sym_comment] = ACTIONS(3), + }, + [190] = { + [sym_identifier] = ACTIONS(1174), + [aux_sym_preproc_include_token1] = ACTIONS(1174), + [aux_sym_preproc_def_token1] = ACTIONS(1174), + [aux_sym_preproc_if_token1] = ACTIONS(1174), + [aux_sym_preproc_if_token2] = ACTIONS(1174), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1174), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1174), + [aux_sym_preproc_else_token1] = ACTIONS(1174), + [aux_sym_preproc_elif_token1] = ACTIONS(1174), + [sym_preproc_directive] = ACTIONS(1174), + [anon_sym_SEMI] = ACTIONS(1176), + [anon_sym_typedef] = ACTIONS(1174), + [anon_sym_extern] = ACTIONS(1174), + [anon_sym___attribute__] = ACTIONS(1174), + [anon_sym_LPAREN2] = ACTIONS(1176), + [anon_sym_LBRACE] = ACTIONS(1176), + [anon_sym_STAR] = ACTIONS(1176), + [anon_sym_static] = ACTIONS(1174), + [anon_sym_auto] = ACTIONS(1174), + [anon_sym_register] = ACTIONS(1174), + [anon_sym_inline] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1174), + [anon_sym_volatile] = ACTIONS(1174), + [anon_sym_restrict] = ACTIONS(1174), + [anon_sym__Atomic] = ACTIONS(1174), + [anon_sym_signed] = ACTIONS(1174), + [anon_sym_unsigned] = ACTIONS(1174), + [anon_sym_long] = ACTIONS(1174), + [anon_sym_short] = ACTIONS(1174), + [sym_primitive_type] = ACTIONS(1174), + [anon_sym_enum] = ACTIONS(1174), + [anon_sym_struct] = ACTIONS(1174), + [anon_sym_union] = ACTIONS(1174), + [anon_sym_if] = ACTIONS(1174), + [anon_sym_switch] = ACTIONS(1174), + [anon_sym_case] = ACTIONS(1174), + [anon_sym_default] = ACTIONS(1174), + [anon_sym_while] = ACTIONS(1174), + [anon_sym_do] = ACTIONS(1174), + [anon_sym_for] = ACTIONS(1174), + [anon_sym_return] = ACTIONS(1174), + [anon_sym_break] = ACTIONS(1174), + [anon_sym_continue] = ACTIONS(1174), + [anon_sym_goto] = ACTIONS(1174), + [anon_sym_AMP] = ACTIONS(1176), + [anon_sym_BANG] = ACTIONS(1176), + [anon_sym_TILDE] = ACTIONS(1176), + [anon_sym_DASH] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1174), + [anon_sym_DASH_DASH] = ACTIONS(1176), + [anon_sym_PLUS_PLUS] = ACTIONS(1176), + [anon_sym_sizeof] = ACTIONS(1174), + [sym_number_literal] = ACTIONS(1176), + [anon_sym_L_SQUOTE] = ACTIONS(1176), + [anon_sym_u_SQUOTE] = ACTIONS(1176), + [anon_sym_U_SQUOTE] = ACTIONS(1176), + [anon_sym_u8_SQUOTE] = ACTIONS(1176), + [anon_sym_SQUOTE] = ACTIONS(1176), + [anon_sym_L_DQUOTE] = ACTIONS(1176), + [anon_sym_u_DQUOTE] = ACTIONS(1176), + [anon_sym_U_DQUOTE] = ACTIONS(1176), + [anon_sym_u8_DQUOTE] = ACTIONS(1176), + [anon_sym_DQUOTE] = ACTIONS(1176), + [sym_true] = ACTIONS(1174), + [sym_false] = ACTIONS(1174), + [sym_null] = ACTIONS(1174), + [sym_comment] = ACTIONS(3), + }, + [191] = { + [sym_identifier] = ACTIONS(1178), + [aux_sym_preproc_include_token1] = ACTIONS(1178), + [aux_sym_preproc_def_token1] = ACTIONS(1178), + [aux_sym_preproc_if_token1] = ACTIONS(1178), + [aux_sym_preproc_if_token2] = ACTIONS(1178), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1178), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1178), + [aux_sym_preproc_else_token1] = ACTIONS(1178), + [aux_sym_preproc_elif_token1] = ACTIONS(1178), + [sym_preproc_directive] = ACTIONS(1178), + [anon_sym_SEMI] = ACTIONS(1180), + [anon_sym_typedef] = ACTIONS(1178), + [anon_sym_extern] = ACTIONS(1178), + [anon_sym___attribute__] = ACTIONS(1178), + [anon_sym_LPAREN2] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(1180), + [anon_sym_STAR] = ACTIONS(1180), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_auto] = ACTIONS(1178), + [anon_sym_register] = ACTIONS(1178), + [anon_sym_inline] = ACTIONS(1178), + [anon_sym_const] = ACTIONS(1178), + [anon_sym_volatile] = ACTIONS(1178), + [anon_sym_restrict] = ACTIONS(1178), + [anon_sym__Atomic] = ACTIONS(1178), + [anon_sym_signed] = ACTIONS(1178), + [anon_sym_unsigned] = ACTIONS(1178), + [anon_sym_long] = ACTIONS(1178), + [anon_sym_short] = ACTIONS(1178), + [sym_primitive_type] = ACTIONS(1178), + [anon_sym_enum] = ACTIONS(1178), + [anon_sym_struct] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), + [anon_sym_if] = ACTIONS(1178), + [anon_sym_switch] = ACTIONS(1178), + [anon_sym_case] = ACTIONS(1178), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_while] = ACTIONS(1178), + [anon_sym_do] = ACTIONS(1178), + [anon_sym_for] = ACTIONS(1178), + [anon_sym_return] = ACTIONS(1178), + [anon_sym_break] = ACTIONS(1178), + [anon_sym_continue] = ACTIONS(1178), + [anon_sym_goto] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1180), + [anon_sym_BANG] = ACTIONS(1180), + [anon_sym_TILDE] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1178), + [anon_sym_PLUS] = ACTIONS(1178), + [anon_sym_DASH_DASH] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1180), + [anon_sym_sizeof] = ACTIONS(1178), + [sym_number_literal] = ACTIONS(1180), + [anon_sym_L_SQUOTE] = ACTIONS(1180), + [anon_sym_u_SQUOTE] = ACTIONS(1180), + [anon_sym_U_SQUOTE] = ACTIONS(1180), + [anon_sym_u8_SQUOTE] = ACTIONS(1180), + [anon_sym_SQUOTE] = ACTIONS(1180), + [anon_sym_L_DQUOTE] = ACTIONS(1180), + [anon_sym_u_DQUOTE] = ACTIONS(1180), + [anon_sym_U_DQUOTE] = ACTIONS(1180), + [anon_sym_u8_DQUOTE] = ACTIONS(1180), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym_true] = ACTIONS(1178), + [sym_false] = ACTIONS(1178), + [sym_null] = ACTIONS(1178), + [sym_comment] = ACTIONS(3), + }, + [192] = { + [ts_builtin_sym_end] = ACTIONS(1038), + [sym_identifier] = ACTIONS(1036), + [aux_sym_preproc_include_token1] = ACTIONS(1036), + [aux_sym_preproc_def_token1] = ACTIONS(1036), + [aux_sym_preproc_if_token1] = ACTIONS(1036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1036), + [sym_preproc_directive] = ACTIONS(1036), + [anon_sym_SEMI] = ACTIONS(1038), + [anon_sym_typedef] = ACTIONS(1036), + [anon_sym_extern] = ACTIONS(1036), + [anon_sym___attribute__] = ACTIONS(1036), + [anon_sym_LPAREN2] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_STAR] = ACTIONS(1038), + [anon_sym_static] = ACTIONS(1036), + [anon_sym_auto] = ACTIONS(1036), + [anon_sym_register] = ACTIONS(1036), + [anon_sym_inline] = ACTIONS(1036), + [anon_sym_const] = ACTIONS(1036), + [anon_sym_volatile] = ACTIONS(1036), + [anon_sym_restrict] = ACTIONS(1036), + [anon_sym__Atomic] = ACTIONS(1036), + [anon_sym_signed] = ACTIONS(1036), + [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), + [anon_sym_if] = ACTIONS(1036), + [anon_sym_else] = ACTIONS(1036), + [anon_sym_switch] = ACTIONS(1036), + [anon_sym_case] = ACTIONS(1036), + [anon_sym_default] = ACTIONS(1036), + [anon_sym_while] = ACTIONS(1036), + [anon_sym_do] = ACTIONS(1036), + [anon_sym_for] = ACTIONS(1036), + [anon_sym_return] = ACTIONS(1036), + [anon_sym_break] = ACTIONS(1036), + [anon_sym_continue] = ACTIONS(1036), + [anon_sym_goto] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1038), + [anon_sym_BANG] = ACTIONS(1038), + [anon_sym_TILDE] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_PLUS] = ACTIONS(1036), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_sizeof] = ACTIONS(1036), + [sym_number_literal] = ACTIONS(1038), + [anon_sym_L_SQUOTE] = ACTIONS(1038), + [anon_sym_u_SQUOTE] = ACTIONS(1038), + [anon_sym_U_SQUOTE] = ACTIONS(1038), + [anon_sym_u8_SQUOTE] = ACTIONS(1038), + [anon_sym_SQUOTE] = ACTIONS(1038), + [anon_sym_L_DQUOTE] = ACTIONS(1038), + [anon_sym_u_DQUOTE] = ACTIONS(1038), + [anon_sym_U_DQUOTE] = ACTIONS(1038), + [anon_sym_u8_DQUOTE] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1038), + [sym_true] = ACTIONS(1036), + [sym_false] = ACTIONS(1036), + [sym_null] = ACTIONS(1036), + [sym_comment] = ACTIONS(3), + }, + [193] = { + [ts_builtin_sym_end] = ACTIONS(1080), + [sym_identifier] = ACTIONS(1078), + [aux_sym_preproc_include_token1] = ACTIONS(1078), + [aux_sym_preproc_def_token1] = ACTIONS(1078), + [aux_sym_preproc_if_token1] = ACTIONS(1078), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1078), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1078), + [sym_preproc_directive] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1080), + [anon_sym_typedef] = ACTIONS(1078), + [anon_sym_extern] = ACTIONS(1078), + [anon_sym___attribute__] = ACTIONS(1078), + [anon_sym_LPAREN2] = ACTIONS(1080), + [anon_sym_LBRACE] = ACTIONS(1080), + [anon_sym_STAR] = ACTIONS(1080), + [anon_sym_static] = ACTIONS(1078), + [anon_sym_auto] = ACTIONS(1078), + [anon_sym_register] = ACTIONS(1078), + [anon_sym_inline] = ACTIONS(1078), + [anon_sym_const] = ACTIONS(1078), + [anon_sym_volatile] = ACTIONS(1078), + [anon_sym_restrict] = ACTIONS(1078), + [anon_sym__Atomic] = ACTIONS(1078), + [anon_sym_signed] = ACTIONS(1078), + [anon_sym_unsigned] = ACTIONS(1078), + [anon_sym_long] = ACTIONS(1078), + [anon_sym_short] = ACTIONS(1078), + [sym_primitive_type] = ACTIONS(1078), + [anon_sym_enum] = ACTIONS(1078), + [anon_sym_struct] = ACTIONS(1078), + [anon_sym_union] = ACTIONS(1078), + [anon_sym_if] = ACTIONS(1078), + [anon_sym_else] = ACTIONS(1078), + [anon_sym_switch] = ACTIONS(1078), + [anon_sym_case] = ACTIONS(1078), + [anon_sym_default] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1078), + [anon_sym_do] = ACTIONS(1078), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_return] = ACTIONS(1078), + [anon_sym_break] = ACTIONS(1078), + [anon_sym_continue] = ACTIONS(1078), + [anon_sym_goto] = ACTIONS(1078), + [anon_sym_AMP] = ACTIONS(1080), + [anon_sym_BANG] = ACTIONS(1080), + [anon_sym_TILDE] = ACTIONS(1080), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1080), + [anon_sym_PLUS_PLUS] = ACTIONS(1080), + [anon_sym_sizeof] = ACTIONS(1078), + [sym_number_literal] = ACTIONS(1080), + [anon_sym_L_SQUOTE] = ACTIONS(1080), + [anon_sym_u_SQUOTE] = ACTIONS(1080), + [anon_sym_U_SQUOTE] = ACTIONS(1080), + [anon_sym_u8_SQUOTE] = ACTIONS(1080), + [anon_sym_SQUOTE] = ACTIONS(1080), + [anon_sym_L_DQUOTE] = ACTIONS(1080), + [anon_sym_u_DQUOTE] = ACTIONS(1080), + [anon_sym_U_DQUOTE] = ACTIONS(1080), + [anon_sym_u8_DQUOTE] = ACTIONS(1080), + [anon_sym_DQUOTE] = ACTIONS(1080), + [sym_true] = ACTIONS(1078), + [sym_false] = ACTIONS(1078), + [sym_null] = ACTIONS(1078), + [sym_comment] = ACTIONS(3), + }, + [194] = { + [ts_builtin_sym_end] = ACTIONS(978), + [sym_identifier] = ACTIONS(976), + [aux_sym_preproc_include_token1] = ACTIONS(976), + [aux_sym_preproc_def_token1] = ACTIONS(976), + [aux_sym_preproc_if_token1] = ACTIONS(976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(976), + [sym_preproc_directive] = ACTIONS(976), + [anon_sym_SEMI] = ACTIONS(978), + [anon_sym_typedef] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(976), + [anon_sym___attribute__] = ACTIONS(976), + [anon_sym_LPAREN2] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(978), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_static] = ACTIONS(976), + [anon_sym_auto] = ACTIONS(976), + [anon_sym_register] = ACTIONS(976), + [anon_sym_inline] = ACTIONS(976), + [anon_sym_const] = ACTIONS(976), + [anon_sym_volatile] = ACTIONS(976), + [anon_sym_restrict] = ACTIONS(976), + [anon_sym__Atomic] = ACTIONS(976), + [anon_sym_signed] = ACTIONS(976), + [anon_sym_unsigned] = ACTIONS(976), + [anon_sym_long] = ACTIONS(976), + [anon_sym_short] = ACTIONS(976), + [sym_primitive_type] = ACTIONS(976), + [anon_sym_enum] = ACTIONS(976), + [anon_sym_struct] = ACTIONS(976), + [anon_sym_union] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_else] = ACTIONS(976), + [anon_sym_switch] = ACTIONS(976), + [anon_sym_case] = ACTIONS(976), + [anon_sym_default] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_do] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_goto] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_PLUS_PLUS] = ACTIONS(978), + [anon_sym_sizeof] = ACTIONS(976), + [sym_number_literal] = ACTIONS(978), + [anon_sym_L_SQUOTE] = ACTIONS(978), + [anon_sym_u_SQUOTE] = ACTIONS(978), + [anon_sym_U_SQUOTE] = ACTIONS(978), + [anon_sym_u8_SQUOTE] = ACTIONS(978), + [anon_sym_SQUOTE] = ACTIONS(978), + [anon_sym_L_DQUOTE] = ACTIONS(978), + [anon_sym_u_DQUOTE] = ACTIONS(978), + [anon_sym_U_DQUOTE] = ACTIONS(978), + [anon_sym_u8_DQUOTE] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym_true] = ACTIONS(976), + [sym_false] = ACTIONS(976), + [sym_null] = ACTIONS(976), + [sym_comment] = ACTIONS(3), + }, + [195] = { + [ts_builtin_sym_end] = ACTIONS(966), + [sym_identifier] = ACTIONS(964), + [aux_sym_preproc_include_token1] = ACTIONS(964), + [aux_sym_preproc_def_token1] = ACTIONS(964), + [aux_sym_preproc_if_token1] = ACTIONS(964), + [aux_sym_preproc_ifdef_token1] = ACTIONS(964), + [aux_sym_preproc_ifdef_token2] = ACTIONS(964), + [sym_preproc_directive] = ACTIONS(964), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_typedef] = ACTIONS(964), + [anon_sym_extern] = ACTIONS(964), + [anon_sym___attribute__] = ACTIONS(964), + [anon_sym_LPAREN2] = ACTIONS(966), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_static] = ACTIONS(964), + [anon_sym_auto] = ACTIONS(964), + [anon_sym_register] = ACTIONS(964), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_const] = ACTIONS(964), + [anon_sym_volatile] = ACTIONS(964), + [anon_sym_restrict] = ACTIONS(964), + [anon_sym__Atomic] = ACTIONS(964), + [anon_sym_signed] = ACTIONS(964), + [anon_sym_unsigned] = ACTIONS(964), + [anon_sym_long] = ACTIONS(964), + [anon_sym_short] = ACTIONS(964), + [sym_primitive_type] = ACTIONS(964), + [anon_sym_enum] = ACTIONS(964), + [anon_sym_struct] = ACTIONS(964), + [anon_sym_union] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_else] = ACTIONS(964), + [anon_sym_switch] = ACTIONS(964), + [anon_sym_case] = ACTIONS(964), + [anon_sym_default] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_do] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_goto] = ACTIONS(964), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_sizeof] = ACTIONS(964), + [sym_number_literal] = ACTIONS(966), + [anon_sym_L_SQUOTE] = ACTIONS(966), + [anon_sym_u_SQUOTE] = ACTIONS(966), + [anon_sym_U_SQUOTE] = ACTIONS(966), + [anon_sym_u8_SQUOTE] = ACTIONS(966), + [anon_sym_SQUOTE] = ACTIONS(966), + [anon_sym_L_DQUOTE] = ACTIONS(966), + [anon_sym_u_DQUOTE] = ACTIONS(966), + [anon_sym_U_DQUOTE] = ACTIONS(966), + [anon_sym_u8_DQUOTE] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym_true] = ACTIONS(964), + [sym_false] = ACTIONS(964), + [sym_null] = ACTIONS(964), + [sym_comment] = ACTIONS(3), + }, + [196] = { + [ts_builtin_sym_end] = ACTIONS(1070), + [sym_identifier] = ACTIONS(1068), + [aux_sym_preproc_include_token1] = ACTIONS(1068), + [aux_sym_preproc_def_token1] = ACTIONS(1068), + [aux_sym_preproc_if_token1] = ACTIONS(1068), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1068), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1068), + [sym_preproc_directive] = ACTIONS(1068), + [anon_sym_SEMI] = ACTIONS(1070), + [anon_sym_typedef] = ACTIONS(1068), + [anon_sym_extern] = ACTIONS(1068), + [anon_sym___attribute__] = ACTIONS(1068), + [anon_sym_LPAREN2] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(1070), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_auto] = ACTIONS(1068), + [anon_sym_register] = ACTIONS(1068), + [anon_sym_inline] = ACTIONS(1068), + [anon_sym_const] = ACTIONS(1068), + [anon_sym_volatile] = ACTIONS(1068), + [anon_sym_restrict] = ACTIONS(1068), + [anon_sym__Atomic] = ACTIONS(1068), + [anon_sym_signed] = ACTIONS(1068), + [anon_sym_unsigned] = ACTIONS(1068), + [anon_sym_long] = ACTIONS(1068), + [anon_sym_short] = ACTIONS(1068), + [sym_primitive_type] = ACTIONS(1068), + [anon_sym_enum] = ACTIONS(1068), + [anon_sym_struct] = ACTIONS(1068), + [anon_sym_union] = ACTIONS(1068), + [anon_sym_if] = ACTIONS(1068), + [anon_sym_else] = ACTIONS(1068), + [anon_sym_switch] = ACTIONS(1068), + [anon_sym_case] = ACTIONS(1068), + [anon_sym_default] = ACTIONS(1068), + [anon_sym_while] = ACTIONS(1068), + [anon_sym_do] = ACTIONS(1068), + [anon_sym_for] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1068), + [anon_sym_break] = ACTIONS(1068), + [anon_sym_continue] = ACTIONS(1068), + [anon_sym_goto] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1070), + [anon_sym_BANG] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_PLUS_PLUS] = ACTIONS(1070), + [anon_sym_sizeof] = ACTIONS(1068), + [sym_number_literal] = ACTIONS(1070), + [anon_sym_L_SQUOTE] = ACTIONS(1070), + [anon_sym_u_SQUOTE] = ACTIONS(1070), + [anon_sym_U_SQUOTE] = ACTIONS(1070), + [anon_sym_u8_SQUOTE] = ACTIONS(1070), + [anon_sym_SQUOTE] = ACTIONS(1070), + [anon_sym_L_DQUOTE] = ACTIONS(1070), + [anon_sym_u_DQUOTE] = ACTIONS(1070), + [anon_sym_U_DQUOTE] = ACTIONS(1070), + [anon_sym_u8_DQUOTE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym_true] = ACTIONS(1068), + [sym_false] = ACTIONS(1068), + [sym_null] = ACTIONS(1068), + [sym_comment] = ACTIONS(3), + }, + [197] = { + [ts_builtin_sym_end] = ACTIONS(990), + [sym_identifier] = ACTIONS(988), + [aux_sym_preproc_include_token1] = ACTIONS(988), + [aux_sym_preproc_def_token1] = ACTIONS(988), + [aux_sym_preproc_if_token1] = ACTIONS(988), + [aux_sym_preproc_ifdef_token1] = ACTIONS(988), + [aux_sym_preproc_ifdef_token2] = ACTIONS(988), + [sym_preproc_directive] = ACTIONS(988), + [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_typedef] = ACTIONS(988), + [anon_sym_extern] = ACTIONS(988), + [anon_sym___attribute__] = ACTIONS(988), + [anon_sym_LPAREN2] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(990), + [anon_sym_STAR] = ACTIONS(990), + [anon_sym_static] = ACTIONS(988), + [anon_sym_auto] = ACTIONS(988), + [anon_sym_register] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(988), + [anon_sym_const] = ACTIONS(988), + [anon_sym_volatile] = ACTIONS(988), + [anon_sym_restrict] = ACTIONS(988), + [anon_sym__Atomic] = ACTIONS(988), + [anon_sym_signed] = ACTIONS(988), + [anon_sym_unsigned] = ACTIONS(988), + [anon_sym_long] = ACTIONS(988), + [anon_sym_short] = ACTIONS(988), + [sym_primitive_type] = ACTIONS(988), + [anon_sym_enum] = ACTIONS(988), + [anon_sym_struct] = ACTIONS(988), + [anon_sym_union] = ACTIONS(988), + [anon_sym_if] = ACTIONS(988), + [anon_sym_else] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(988), + [anon_sym_case] = ACTIONS(988), + [anon_sym_default] = ACTIONS(988), + [anon_sym_while] = ACTIONS(988), + [anon_sym_do] = ACTIONS(988), + [anon_sym_for] = ACTIONS(988), + [anon_sym_return] = ACTIONS(988), + [anon_sym_break] = ACTIONS(988), + [anon_sym_continue] = ACTIONS(988), + [anon_sym_goto] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(990), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(990), + [anon_sym_DASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_sizeof] = ACTIONS(988), + [sym_number_literal] = ACTIONS(990), + [anon_sym_L_SQUOTE] = ACTIONS(990), + [anon_sym_u_SQUOTE] = ACTIONS(990), + [anon_sym_U_SQUOTE] = ACTIONS(990), + [anon_sym_u8_SQUOTE] = ACTIONS(990), + [anon_sym_SQUOTE] = ACTIONS(990), + [anon_sym_L_DQUOTE] = ACTIONS(990), + [anon_sym_u_DQUOTE] = ACTIONS(990), + [anon_sym_U_DQUOTE] = ACTIONS(990), + [anon_sym_u8_DQUOTE] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym_true] = ACTIONS(988), + [sym_false] = ACTIONS(988), + [sym_null] = ACTIONS(988), + [sym_comment] = ACTIONS(3), + }, + [198] = { + [ts_builtin_sym_end] = ACTIONS(982), + [sym_identifier] = ACTIONS(980), + [aux_sym_preproc_include_token1] = ACTIONS(980), + [aux_sym_preproc_def_token1] = ACTIONS(980), + [aux_sym_preproc_if_token1] = ACTIONS(980), + [aux_sym_preproc_ifdef_token1] = ACTIONS(980), + [aux_sym_preproc_ifdef_token2] = ACTIONS(980), + [sym_preproc_directive] = ACTIONS(980), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_typedef] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym___attribute__] = ACTIONS(980), + [anon_sym_LPAREN2] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_STAR] = ACTIONS(982), + [anon_sym_static] = ACTIONS(980), + [anon_sym_auto] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_inline] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [anon_sym_volatile] = ACTIONS(980), + [anon_sym_restrict] = ACTIONS(980), + [anon_sym__Atomic] = ACTIONS(980), + [anon_sym_signed] = ACTIONS(980), + [anon_sym_unsigned] = ACTIONS(980), + [anon_sym_long] = ACTIONS(980), + [anon_sym_short] = ACTIONS(980), + [sym_primitive_type] = ACTIONS(980), + [anon_sym_enum] = ACTIONS(980), + [anon_sym_struct] = ACTIONS(980), + [anon_sym_union] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_else] = ACTIONS(980), + [anon_sym_switch] = ACTIONS(980), + [anon_sym_case] = ACTIONS(980), + [anon_sym_default] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_goto] = ACTIONS(980), + [anon_sym_AMP] = ACTIONS(982), + [anon_sym_BANG] = ACTIONS(982), + [anon_sym_TILDE] = ACTIONS(982), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(982), + [anon_sym_PLUS_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(980), + [sym_number_literal] = ACTIONS(982), + [anon_sym_L_SQUOTE] = ACTIONS(982), + [anon_sym_u_SQUOTE] = ACTIONS(982), + [anon_sym_U_SQUOTE] = ACTIONS(982), + [anon_sym_u8_SQUOTE] = ACTIONS(982), + [anon_sym_SQUOTE] = ACTIONS(982), + [anon_sym_L_DQUOTE] = ACTIONS(982), + [anon_sym_u_DQUOTE] = ACTIONS(982), + [anon_sym_U_DQUOTE] = ACTIONS(982), + [anon_sym_u8_DQUOTE] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym_true] = ACTIONS(980), + [sym_false] = ACTIONS(980), + [sym_null] = ACTIONS(980), + [sym_comment] = ACTIONS(3), + }, + [199] = { + [ts_builtin_sym_end] = ACTIONS(974), + [sym_identifier] = ACTIONS(972), + [aux_sym_preproc_include_token1] = ACTIONS(972), + [aux_sym_preproc_def_token1] = ACTIONS(972), + [aux_sym_preproc_if_token1] = ACTIONS(972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(972), + [sym_preproc_directive] = ACTIONS(972), + [anon_sym_SEMI] = ACTIONS(974), + [anon_sym_typedef] = ACTIONS(972), + [anon_sym_extern] = ACTIONS(972), + [anon_sym___attribute__] = ACTIONS(972), + [anon_sym_LPAREN2] = ACTIONS(974), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_STAR] = ACTIONS(974), + [anon_sym_static] = ACTIONS(972), + [anon_sym_auto] = ACTIONS(972), + [anon_sym_register] = ACTIONS(972), + [anon_sym_inline] = ACTIONS(972), + [anon_sym_const] = ACTIONS(972), + [anon_sym_volatile] = ACTIONS(972), + [anon_sym_restrict] = ACTIONS(972), + [anon_sym__Atomic] = ACTIONS(972), + [anon_sym_signed] = ACTIONS(972), + [anon_sym_unsigned] = ACTIONS(972), + [anon_sym_long] = ACTIONS(972), + [anon_sym_short] = ACTIONS(972), + [sym_primitive_type] = ACTIONS(972), + [anon_sym_enum] = ACTIONS(972), + [anon_sym_struct] = ACTIONS(972), + [anon_sym_union] = ACTIONS(972), + [anon_sym_if] = ACTIONS(972), + [anon_sym_else] = ACTIONS(972), + [anon_sym_switch] = ACTIONS(972), + [anon_sym_case] = ACTIONS(972), + [anon_sym_default] = ACTIONS(972), + [anon_sym_while] = ACTIONS(972), + [anon_sym_do] = ACTIONS(972), + [anon_sym_for] = ACTIONS(972), + [anon_sym_return] = ACTIONS(972), + [anon_sym_break] = ACTIONS(972), + [anon_sym_continue] = ACTIONS(972), + [anon_sym_goto] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(974), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(974), + [anon_sym_sizeof] = ACTIONS(972), + [sym_number_literal] = ACTIONS(974), + [anon_sym_L_SQUOTE] = ACTIONS(974), + [anon_sym_u_SQUOTE] = ACTIONS(974), + [anon_sym_U_SQUOTE] = ACTIONS(974), + [anon_sym_u8_SQUOTE] = ACTIONS(974), + [anon_sym_SQUOTE] = ACTIONS(974), + [anon_sym_L_DQUOTE] = ACTIONS(974), + [anon_sym_u_DQUOTE] = ACTIONS(974), + [anon_sym_U_DQUOTE] = ACTIONS(974), + [anon_sym_u8_DQUOTE] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(974), + [sym_true] = ACTIONS(972), + [sym_false] = ACTIONS(972), + [sym_null] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + }, + [200] = { + [ts_builtin_sym_end] = ACTIONS(1054), + [sym_identifier] = ACTIONS(1052), + [aux_sym_preproc_include_token1] = ACTIONS(1052), + [aux_sym_preproc_def_token1] = ACTIONS(1052), + [aux_sym_preproc_if_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), + [sym_preproc_directive] = ACTIONS(1052), + [anon_sym_SEMI] = ACTIONS(1054), + [anon_sym_typedef] = ACTIONS(1052), + [anon_sym_extern] = ACTIONS(1052), + [anon_sym___attribute__] = ACTIONS(1052), + [anon_sym_LPAREN2] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_static] = ACTIONS(1052), + [anon_sym_auto] = ACTIONS(1052), + [anon_sym_register] = ACTIONS(1052), + [anon_sym_inline] = ACTIONS(1052), + [anon_sym_const] = ACTIONS(1052), + [anon_sym_volatile] = ACTIONS(1052), + [anon_sym_restrict] = ACTIONS(1052), + [anon_sym__Atomic] = ACTIONS(1052), + [anon_sym_signed] = ACTIONS(1052), + [anon_sym_unsigned] = ACTIONS(1052), + [anon_sym_long] = ACTIONS(1052), + [anon_sym_short] = ACTIONS(1052), + [sym_primitive_type] = ACTIONS(1052), + [anon_sym_enum] = ACTIONS(1052), + [anon_sym_struct] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1052), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_else] = ACTIONS(1052), + [anon_sym_switch] = ACTIONS(1052), + [anon_sym_case] = ACTIONS(1052), + [anon_sym_default] = ACTIONS(1052), + [anon_sym_while] = ACTIONS(1052), + [anon_sym_do] = ACTIONS(1052), + [anon_sym_for] = ACTIONS(1052), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_break] = ACTIONS(1052), + [anon_sym_continue] = ACTIONS(1052), + [anon_sym_goto] = ACTIONS(1052), + [anon_sym_AMP] = ACTIONS(1054), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_DASH_DASH] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1054), + [anon_sym_sizeof] = ACTIONS(1052), + [sym_number_literal] = ACTIONS(1054), + [anon_sym_L_SQUOTE] = ACTIONS(1054), + [anon_sym_u_SQUOTE] = ACTIONS(1054), + [anon_sym_U_SQUOTE] = ACTIONS(1054), + [anon_sym_u8_SQUOTE] = ACTIONS(1054), + [anon_sym_SQUOTE] = ACTIONS(1054), + [anon_sym_L_DQUOTE] = ACTIONS(1054), + [anon_sym_u_DQUOTE] = ACTIONS(1054), + [anon_sym_U_DQUOTE] = ACTIONS(1054), + [anon_sym_u8_DQUOTE] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym_true] = ACTIONS(1052), + [sym_false] = ACTIONS(1052), + [sym_null] = ACTIONS(1052), + [sym_comment] = ACTIONS(3), + }, + [201] = { + [ts_builtin_sym_end] = ACTIONS(1050), + [sym_identifier] = ACTIONS(1048), + [aux_sym_preproc_include_token1] = ACTIONS(1048), + [aux_sym_preproc_def_token1] = ACTIONS(1048), + [aux_sym_preproc_if_token1] = ACTIONS(1048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1048), + [sym_preproc_directive] = ACTIONS(1048), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_typedef] = ACTIONS(1048), + [anon_sym_extern] = ACTIONS(1048), + [anon_sym___attribute__] = ACTIONS(1048), + [anon_sym_LPAREN2] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_STAR] = ACTIONS(1050), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_auto] = ACTIONS(1048), + [anon_sym_register] = ACTIONS(1048), + [anon_sym_inline] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1048), + [anon_sym_volatile] = ACTIONS(1048), + [anon_sym_restrict] = ACTIONS(1048), + [anon_sym__Atomic] = ACTIONS(1048), + [anon_sym_signed] = ACTIONS(1048), + [anon_sym_unsigned] = ACTIONS(1048), + [anon_sym_long] = ACTIONS(1048), + [anon_sym_short] = ACTIONS(1048), + [sym_primitive_type] = ACTIONS(1048), + [anon_sym_enum] = ACTIONS(1048), + [anon_sym_struct] = ACTIONS(1048), + [anon_sym_union] = ACTIONS(1048), + [anon_sym_if] = ACTIONS(1048), + [anon_sym_else] = ACTIONS(1048), + [anon_sym_switch] = ACTIONS(1048), + [anon_sym_case] = ACTIONS(1048), + [anon_sym_default] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1048), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_goto] = ACTIONS(1048), + [anon_sym_AMP] = ACTIONS(1050), + [anon_sym_BANG] = ACTIONS(1050), + [anon_sym_TILDE] = ACTIONS(1050), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_PLUS_PLUS] = ACTIONS(1050), + [anon_sym_sizeof] = ACTIONS(1048), + [sym_number_literal] = ACTIONS(1050), + [anon_sym_L_SQUOTE] = ACTIONS(1050), + [anon_sym_u_SQUOTE] = ACTIONS(1050), + [anon_sym_U_SQUOTE] = ACTIONS(1050), + [anon_sym_u8_SQUOTE] = ACTIONS(1050), + [anon_sym_SQUOTE] = ACTIONS(1050), + [anon_sym_L_DQUOTE] = ACTIONS(1050), + [anon_sym_u_DQUOTE] = ACTIONS(1050), + [anon_sym_U_DQUOTE] = ACTIONS(1050), + [anon_sym_u8_DQUOTE] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym_true] = ACTIONS(1048), + [sym_false] = ACTIONS(1048), + [sym_null] = ACTIONS(1048), + [sym_comment] = ACTIONS(3), + }, + [202] = { + [sym_identifier] = ACTIONS(992), + [aux_sym_preproc_include_token1] = ACTIONS(992), + [aux_sym_preproc_def_token1] = ACTIONS(992), + [aux_sym_preproc_if_token1] = ACTIONS(992), + [aux_sym_preproc_if_token2] = ACTIONS(992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(992), + [sym_preproc_directive] = ACTIONS(992), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_typedef] = ACTIONS(992), + [anon_sym_extern] = ACTIONS(992), + [anon_sym___attribute__] = ACTIONS(992), + [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_STAR] = ACTIONS(994), + [anon_sym_static] = ACTIONS(992), + [anon_sym_auto] = ACTIONS(992), + [anon_sym_register] = ACTIONS(992), + [anon_sym_inline] = ACTIONS(992), + [anon_sym_const] = ACTIONS(992), + [anon_sym_volatile] = ACTIONS(992), + [anon_sym_restrict] = ACTIONS(992), + [anon_sym__Atomic] = ACTIONS(992), + [anon_sym_signed] = ACTIONS(992), + [anon_sym_unsigned] = ACTIONS(992), + [anon_sym_long] = ACTIONS(992), + [anon_sym_short] = ACTIONS(992), + [sym_primitive_type] = ACTIONS(992), + [anon_sym_enum] = ACTIONS(992), + [anon_sym_struct] = ACTIONS(992), + [anon_sym_union] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_else] = ACTIONS(992), + [anon_sym_switch] = ACTIONS(992), + [anon_sym_case] = ACTIONS(992), + [anon_sym_default] = ACTIONS(992), + [anon_sym_while] = ACTIONS(992), + [anon_sym_do] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_return] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_goto] = ACTIONS(992), + [anon_sym_AMP] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_sizeof] = ACTIONS(992), + [sym_number_literal] = ACTIONS(994), + [anon_sym_L_SQUOTE] = ACTIONS(994), + [anon_sym_u_SQUOTE] = ACTIONS(994), + [anon_sym_U_SQUOTE] = ACTIONS(994), + [anon_sym_u8_SQUOTE] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(994), + [anon_sym_L_DQUOTE] = ACTIONS(994), + [anon_sym_u_DQUOTE] = ACTIONS(994), + [anon_sym_U_DQUOTE] = ACTIONS(994), + [anon_sym_u8_DQUOTE] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(994), + [sym_true] = ACTIONS(992), + [sym_false] = ACTIONS(992), + [sym_null] = ACTIONS(992), + [sym_comment] = ACTIONS(3), + }, + [203] = { + [sym_identifier] = ACTIONS(1024), + [aux_sym_preproc_include_token1] = ACTIONS(1024), + [aux_sym_preproc_def_token1] = ACTIONS(1024), + [aux_sym_preproc_if_token1] = ACTIONS(1024), + [aux_sym_preproc_if_token2] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1024), + [sym_preproc_directive] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_typedef] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1024), + [anon_sym___attribute__] = ACTIONS(1024), + [anon_sym_LPAREN2] = ACTIONS(1026), + [anon_sym_LBRACE] = ACTIONS(1026), + [anon_sym_STAR] = ACTIONS(1026), + [anon_sym_static] = ACTIONS(1024), + [anon_sym_auto] = ACTIONS(1024), + [anon_sym_register] = ACTIONS(1024), + [anon_sym_inline] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_volatile] = ACTIONS(1024), + [anon_sym_restrict] = ACTIONS(1024), + [anon_sym__Atomic] = ACTIONS(1024), + [anon_sym_signed] = ACTIONS(1024), + [anon_sym_unsigned] = ACTIONS(1024), + [anon_sym_long] = ACTIONS(1024), + [anon_sym_short] = ACTIONS(1024), + [sym_primitive_type] = ACTIONS(1024), + [anon_sym_enum] = ACTIONS(1024), + [anon_sym_struct] = ACTIONS(1024), + [anon_sym_union] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_else] = ACTIONS(1024), + [anon_sym_switch] = ACTIONS(1024), + [anon_sym_case] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_goto] = ACTIONS(1024), + [anon_sym_AMP] = ACTIONS(1026), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_TILDE] = ACTIONS(1026), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_sizeof] = ACTIONS(1024), + [sym_number_literal] = ACTIONS(1026), + [anon_sym_L_SQUOTE] = ACTIONS(1026), + [anon_sym_u_SQUOTE] = ACTIONS(1026), + [anon_sym_U_SQUOTE] = ACTIONS(1026), + [anon_sym_u8_SQUOTE] = ACTIONS(1026), + [anon_sym_SQUOTE] = ACTIONS(1026), + [anon_sym_L_DQUOTE] = ACTIONS(1026), + [anon_sym_u_DQUOTE] = ACTIONS(1026), + [anon_sym_U_DQUOTE] = ACTIONS(1026), + [anon_sym_u8_DQUOTE] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(1026), + [sym_true] = ACTIONS(1024), + [sym_false] = ACTIONS(1024), + [sym_null] = ACTIONS(1024), + [sym_comment] = ACTIONS(3), + }, + [204] = { + [sym_type_qualifier] = STATE(721), + [sym__type_specifier] = STATE(761), + [sym_sized_type_specifier] = STATE(761), + [sym_enum_specifier] = STATE(761), + [sym_struct_specifier] = STATE(761), + [sym_union_specifier] = STATE(761), + [sym__expression] = STATE(579), + [sym_comma_expression] = STATE(1039), + [sym_conditional_expression] = STATE(579), + [sym_assignment_expression] = STATE(579), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(579), + [sym_binary_expression] = STATE(579), + [sym_update_expression] = STATE(579), + [sym_cast_expression] = STATE(579), + [sym_type_descriptor] = STATE(1038), + [sym_sizeof_expression] = STATE(579), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(579), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(579), + [sym_concatenated_string] = STATE(579), + [sym_string_literal] = STATE(380), + [sym_macro_type_specifier] = STATE(761), + [aux_sym_type_definition_repeat1] = STATE(721), + [aux_sym_sized_type_specifier_repeat1] = STATE(764), + [sym_identifier] = ACTIONS(1182), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(1184), + [anon_sym_unsigned] = ACTIONS(1184), + [anon_sym_long] = ACTIONS(1184), + [anon_sym_short] = ACTIONS(1184), + [sym_primitive_type] = ACTIONS(1186), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(1188), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(1190), + [sym_false] = ACTIONS(1190), + [sym_null] = ACTIONS(1190), + [sym_comment] = ACTIONS(3), + }, + [205] = { + [ts_builtin_sym_end] = ACTIONS(1014), + [sym_identifier] = ACTIONS(1012), + [aux_sym_preproc_include_token1] = ACTIONS(1012), + [aux_sym_preproc_def_token1] = ACTIONS(1012), + [aux_sym_preproc_if_token1] = ACTIONS(1012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1012), + [sym_preproc_directive] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1014), + [anon_sym_typedef] = ACTIONS(1012), + [anon_sym_extern] = ACTIONS(1012), + [anon_sym___attribute__] = ACTIONS(1012), + [anon_sym_LPAREN2] = ACTIONS(1014), + [anon_sym_LBRACE] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1014), + [anon_sym_static] = ACTIONS(1012), + [anon_sym_auto] = ACTIONS(1012), + [anon_sym_register] = ACTIONS(1012), + [anon_sym_inline] = ACTIONS(1012), + [anon_sym_const] = ACTIONS(1012), + [anon_sym_volatile] = ACTIONS(1012), + [anon_sym_restrict] = ACTIONS(1012), + [anon_sym__Atomic] = ACTIONS(1012), + [anon_sym_signed] = ACTIONS(1012), + [anon_sym_unsigned] = ACTIONS(1012), + [anon_sym_long] = ACTIONS(1012), + [anon_sym_short] = ACTIONS(1012), + [sym_primitive_type] = ACTIONS(1012), + [anon_sym_enum] = ACTIONS(1012), + [anon_sym_struct] = ACTIONS(1012), + [anon_sym_union] = ACTIONS(1012), + [anon_sym_if] = ACTIONS(1012), + [anon_sym_else] = ACTIONS(1012), + [anon_sym_switch] = ACTIONS(1012), + [anon_sym_case] = ACTIONS(1012), + [anon_sym_default] = ACTIONS(1012), + [anon_sym_while] = ACTIONS(1012), + [anon_sym_do] = ACTIONS(1012), + [anon_sym_for] = ACTIONS(1012), + [anon_sym_return] = ACTIONS(1012), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_continue] = ACTIONS(1012), + [anon_sym_goto] = ACTIONS(1012), + [anon_sym_AMP] = ACTIONS(1014), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_TILDE] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1012), + [anon_sym_PLUS] = ACTIONS(1012), + [anon_sym_DASH_DASH] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_sizeof] = ACTIONS(1012), + [sym_number_literal] = ACTIONS(1014), + [anon_sym_L_SQUOTE] = ACTIONS(1014), + [anon_sym_u_SQUOTE] = ACTIONS(1014), + [anon_sym_U_SQUOTE] = ACTIONS(1014), + [anon_sym_u8_SQUOTE] = ACTIONS(1014), + [anon_sym_SQUOTE] = ACTIONS(1014), + [anon_sym_L_DQUOTE] = ACTIONS(1014), + [anon_sym_u_DQUOTE] = ACTIONS(1014), + [anon_sym_U_DQUOTE] = ACTIONS(1014), + [anon_sym_u8_DQUOTE] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(1014), + [sym_true] = ACTIONS(1012), + [sym_false] = ACTIONS(1012), + [sym_null] = ACTIONS(1012), + [sym_comment] = ACTIONS(3), + }, + [206] = { + [ts_builtin_sym_end] = ACTIONS(962), + [sym_identifier] = ACTIONS(960), + [aux_sym_preproc_include_token1] = ACTIONS(960), + [aux_sym_preproc_def_token1] = ACTIONS(960), + [aux_sym_preproc_if_token1] = ACTIONS(960), + [aux_sym_preproc_ifdef_token1] = ACTIONS(960), + [aux_sym_preproc_ifdef_token2] = ACTIONS(960), + [sym_preproc_directive] = ACTIONS(960), + [anon_sym_SEMI] = ACTIONS(962), + [anon_sym_typedef] = ACTIONS(960), + [anon_sym_extern] = ACTIONS(960), + [anon_sym___attribute__] = ACTIONS(960), + [anon_sym_LPAREN2] = ACTIONS(962), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(962), + [anon_sym_static] = ACTIONS(960), + [anon_sym_auto] = ACTIONS(960), + [anon_sym_register] = ACTIONS(960), + [anon_sym_inline] = ACTIONS(960), + [anon_sym_const] = ACTIONS(960), + [anon_sym_volatile] = ACTIONS(960), + [anon_sym_restrict] = ACTIONS(960), + [anon_sym__Atomic] = ACTIONS(960), + [anon_sym_signed] = ACTIONS(960), + [anon_sym_unsigned] = ACTIONS(960), + [anon_sym_long] = ACTIONS(960), + [anon_sym_short] = ACTIONS(960), + [sym_primitive_type] = ACTIONS(960), + [anon_sym_enum] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(960), + [anon_sym_union] = ACTIONS(960), + [anon_sym_if] = ACTIONS(960), + [anon_sym_else] = ACTIONS(960), + [anon_sym_switch] = ACTIONS(960), + [anon_sym_case] = ACTIONS(960), + [anon_sym_default] = ACTIONS(960), + [anon_sym_while] = ACTIONS(960), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(960), + [anon_sym_return] = ACTIONS(960), + [anon_sym_break] = ACTIONS(960), + [anon_sym_continue] = ACTIONS(960), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(962), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(962), + [anon_sym_DASH] = ACTIONS(960), + [anon_sym_PLUS] = ACTIONS(960), + [anon_sym_DASH_DASH] = ACTIONS(962), + [anon_sym_PLUS_PLUS] = ACTIONS(962), + [anon_sym_sizeof] = ACTIONS(960), + [sym_number_literal] = ACTIONS(962), + [anon_sym_L_SQUOTE] = ACTIONS(962), + [anon_sym_u_SQUOTE] = ACTIONS(962), + [anon_sym_U_SQUOTE] = ACTIONS(962), + [anon_sym_u8_SQUOTE] = ACTIONS(962), + [anon_sym_SQUOTE] = ACTIONS(962), + [anon_sym_L_DQUOTE] = ACTIONS(962), + [anon_sym_u_DQUOTE] = ACTIONS(962), + [anon_sym_U_DQUOTE] = ACTIONS(962), + [anon_sym_u8_DQUOTE] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(962), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), + [sym_comment] = ACTIONS(3), + }, + [207] = { + [ts_builtin_sym_end] = ACTIONS(1058), + [sym_identifier] = ACTIONS(1056), + [aux_sym_preproc_include_token1] = ACTIONS(1056), + [aux_sym_preproc_def_token1] = ACTIONS(1056), + [aux_sym_preproc_if_token1] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1056), + [sym_preproc_directive] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1058), + [anon_sym_typedef] = ACTIONS(1056), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym___attribute__] = ACTIONS(1056), + [anon_sym_LPAREN2] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_static] = ACTIONS(1056), + [anon_sym_auto] = ACTIONS(1056), + [anon_sym_register] = ACTIONS(1056), + [anon_sym_inline] = ACTIONS(1056), + [anon_sym_const] = ACTIONS(1056), + [anon_sym_volatile] = ACTIONS(1056), + [anon_sym_restrict] = ACTIONS(1056), + [anon_sym__Atomic] = ACTIONS(1056), + [anon_sym_signed] = ACTIONS(1056), + [anon_sym_unsigned] = ACTIONS(1056), + [anon_sym_long] = ACTIONS(1056), + [anon_sym_short] = ACTIONS(1056), + [sym_primitive_type] = ACTIONS(1056), + [anon_sym_enum] = ACTIONS(1056), + [anon_sym_struct] = ACTIONS(1056), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_if] = ACTIONS(1056), + [anon_sym_else] = ACTIONS(1056), + [anon_sym_switch] = ACTIONS(1056), + [anon_sym_case] = ACTIONS(1056), + [anon_sym_default] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1056), + [anon_sym_do] = ACTIONS(1056), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_return] = ACTIONS(1056), + [anon_sym_break] = ACTIONS(1056), + [anon_sym_continue] = ACTIONS(1056), + [anon_sym_goto] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_BANG] = ACTIONS(1058), + [anon_sym_TILDE] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1056), + [anon_sym_PLUS] = ACTIONS(1056), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_sizeof] = ACTIONS(1056), + [sym_number_literal] = ACTIONS(1058), + [anon_sym_L_SQUOTE] = ACTIONS(1058), + [anon_sym_u_SQUOTE] = ACTIONS(1058), + [anon_sym_U_SQUOTE] = ACTIONS(1058), + [anon_sym_u8_SQUOTE] = ACTIONS(1058), + [anon_sym_SQUOTE] = ACTIONS(1058), + [anon_sym_L_DQUOTE] = ACTIONS(1058), + [anon_sym_u_DQUOTE] = ACTIONS(1058), + [anon_sym_U_DQUOTE] = ACTIONS(1058), + [anon_sym_u8_DQUOTE] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1058), + [sym_true] = ACTIONS(1056), + [sym_false] = ACTIONS(1056), + [sym_null] = ACTIONS(1056), + [sym_comment] = ACTIONS(3), + }, + [208] = { + [ts_builtin_sym_end] = ACTIONS(1006), + [sym_identifier] = ACTIONS(1004), + [aux_sym_preproc_include_token1] = ACTIONS(1004), + [aux_sym_preproc_def_token1] = ACTIONS(1004), + [aux_sym_preproc_if_token1] = ACTIONS(1004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1004), + [sym_preproc_directive] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym_typedef] = ACTIONS(1004), + [anon_sym_extern] = ACTIONS(1004), + [anon_sym___attribute__] = ACTIONS(1004), + [anon_sym_LPAREN2] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_static] = ACTIONS(1004), + [anon_sym_auto] = ACTIONS(1004), + [anon_sym_register] = ACTIONS(1004), + [anon_sym_inline] = ACTIONS(1004), + [anon_sym_const] = ACTIONS(1004), + [anon_sym_volatile] = ACTIONS(1004), + [anon_sym_restrict] = ACTIONS(1004), + [anon_sym__Atomic] = ACTIONS(1004), + [anon_sym_signed] = ACTIONS(1004), + [anon_sym_unsigned] = ACTIONS(1004), + [anon_sym_long] = ACTIONS(1004), + [anon_sym_short] = ACTIONS(1004), + [sym_primitive_type] = ACTIONS(1004), + [anon_sym_enum] = ACTIONS(1004), + [anon_sym_struct] = ACTIONS(1004), + [anon_sym_union] = ACTIONS(1004), + [anon_sym_if] = ACTIONS(1004), + [anon_sym_else] = ACTIONS(1004), + [anon_sym_switch] = ACTIONS(1004), + [anon_sym_case] = ACTIONS(1004), + [anon_sym_default] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(1004), + [anon_sym_do] = ACTIONS(1004), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_return] = ACTIONS(1004), + [anon_sym_break] = ACTIONS(1004), + [anon_sym_continue] = ACTIONS(1004), + [anon_sym_goto] = ACTIONS(1004), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1004), + [sym_number_literal] = ACTIONS(1006), + [anon_sym_L_SQUOTE] = ACTIONS(1006), + [anon_sym_u_SQUOTE] = ACTIONS(1006), + [anon_sym_U_SQUOTE] = ACTIONS(1006), + [anon_sym_u8_SQUOTE] = ACTIONS(1006), + [anon_sym_SQUOTE] = ACTIONS(1006), + [anon_sym_L_DQUOTE] = ACTIONS(1006), + [anon_sym_u_DQUOTE] = ACTIONS(1006), + [anon_sym_U_DQUOTE] = ACTIONS(1006), + [anon_sym_u8_DQUOTE] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym_true] = ACTIONS(1004), + [sym_false] = ACTIONS(1004), + [sym_null] = ACTIONS(1004), + [sym_comment] = ACTIONS(3), + }, + [209] = { + [ts_builtin_sym_end] = ACTIONS(1030), + [sym_identifier] = ACTIONS(1028), + [aux_sym_preproc_include_token1] = ACTIONS(1028), + [aux_sym_preproc_def_token1] = ACTIONS(1028), + [aux_sym_preproc_if_token1] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), + [sym_preproc_directive] = ACTIONS(1028), + [anon_sym_SEMI] = ACTIONS(1030), + [anon_sym_typedef] = ACTIONS(1028), + [anon_sym_extern] = ACTIONS(1028), + [anon_sym___attribute__] = ACTIONS(1028), + [anon_sym_LPAREN2] = ACTIONS(1030), + [anon_sym_LBRACE] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_static] = ACTIONS(1028), + [anon_sym_auto] = ACTIONS(1028), + [anon_sym_register] = ACTIONS(1028), + [anon_sym_inline] = ACTIONS(1028), + [anon_sym_const] = ACTIONS(1028), + [anon_sym_volatile] = ACTIONS(1028), + [anon_sym_restrict] = ACTIONS(1028), + [anon_sym__Atomic] = ACTIONS(1028), + [anon_sym_signed] = ACTIONS(1028), + [anon_sym_unsigned] = ACTIONS(1028), + [anon_sym_long] = ACTIONS(1028), + [anon_sym_short] = ACTIONS(1028), + [sym_primitive_type] = ACTIONS(1028), + [anon_sym_enum] = ACTIONS(1028), + [anon_sym_struct] = ACTIONS(1028), + [anon_sym_union] = ACTIONS(1028), + [anon_sym_if] = ACTIONS(1028), + [anon_sym_else] = ACTIONS(1028), + [anon_sym_switch] = ACTIONS(1028), + [anon_sym_case] = ACTIONS(1028), + [anon_sym_default] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1028), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_break] = ACTIONS(1028), + [anon_sym_continue] = ACTIONS(1028), + [anon_sym_goto] = ACTIONS(1028), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_TILDE] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_sizeof] = ACTIONS(1028), + [sym_number_literal] = ACTIONS(1030), + [anon_sym_L_SQUOTE] = ACTIONS(1030), + [anon_sym_u_SQUOTE] = ACTIONS(1030), + [anon_sym_U_SQUOTE] = ACTIONS(1030), + [anon_sym_u8_SQUOTE] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_L_DQUOTE] = ACTIONS(1030), + [anon_sym_u_DQUOTE] = ACTIONS(1030), + [anon_sym_U_DQUOTE] = ACTIONS(1030), + [anon_sym_u8_DQUOTE] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym_true] = ACTIONS(1028), + [sym_false] = ACTIONS(1028), + [sym_null] = ACTIONS(1028), + [sym_comment] = ACTIONS(3), + }, + [210] = { + [ts_builtin_sym_end] = ACTIONS(1018), + [sym_identifier] = ACTIONS(1016), + [aux_sym_preproc_include_token1] = ACTIONS(1016), + [aux_sym_preproc_def_token1] = ACTIONS(1016), + [aux_sym_preproc_if_token1] = ACTIONS(1016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1016), + [sym_preproc_directive] = ACTIONS(1016), + [anon_sym_SEMI] = ACTIONS(1018), + [anon_sym_typedef] = ACTIONS(1016), + [anon_sym_extern] = ACTIONS(1016), + [anon_sym___attribute__] = ACTIONS(1016), + [anon_sym_LPAREN2] = ACTIONS(1018), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_STAR] = ACTIONS(1018), + [anon_sym_static] = ACTIONS(1016), + [anon_sym_auto] = ACTIONS(1016), + [anon_sym_register] = ACTIONS(1016), + [anon_sym_inline] = ACTIONS(1016), + [anon_sym_const] = ACTIONS(1016), + [anon_sym_volatile] = ACTIONS(1016), + [anon_sym_restrict] = ACTIONS(1016), + [anon_sym__Atomic] = ACTIONS(1016), + [anon_sym_signed] = ACTIONS(1016), + [anon_sym_unsigned] = ACTIONS(1016), + [anon_sym_long] = ACTIONS(1016), + [anon_sym_short] = ACTIONS(1016), + [sym_primitive_type] = ACTIONS(1016), + [anon_sym_enum] = ACTIONS(1016), + [anon_sym_struct] = ACTIONS(1016), + [anon_sym_union] = ACTIONS(1016), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_else] = ACTIONS(1016), + [anon_sym_switch] = ACTIONS(1016), + [anon_sym_case] = ACTIONS(1016), + [anon_sym_default] = ACTIONS(1016), + [anon_sym_while] = ACTIONS(1016), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_for] = ACTIONS(1016), + [anon_sym_return] = ACTIONS(1016), + [anon_sym_break] = ACTIONS(1016), + [anon_sym_continue] = ACTIONS(1016), + [anon_sym_goto] = ACTIONS(1016), + [anon_sym_AMP] = ACTIONS(1018), + [anon_sym_BANG] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1016), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), + [anon_sym_PLUS_PLUS] = ACTIONS(1018), + [anon_sym_sizeof] = ACTIONS(1016), + [sym_number_literal] = ACTIONS(1018), + [anon_sym_L_SQUOTE] = ACTIONS(1018), + [anon_sym_u_SQUOTE] = ACTIONS(1018), + [anon_sym_U_SQUOTE] = ACTIONS(1018), + [anon_sym_u8_SQUOTE] = ACTIONS(1018), + [anon_sym_SQUOTE] = ACTIONS(1018), + [anon_sym_L_DQUOTE] = ACTIONS(1018), + [anon_sym_u_DQUOTE] = ACTIONS(1018), + [anon_sym_U_DQUOTE] = ACTIONS(1018), + [anon_sym_u8_DQUOTE] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(1018), + [sym_true] = ACTIONS(1016), + [sym_false] = ACTIONS(1016), + [sym_null] = ACTIONS(1016), + [sym_comment] = ACTIONS(3), + }, + [211] = { + [sym_identifier] = ACTIONS(1082), + [aux_sym_preproc_include_token1] = ACTIONS(1082), + [aux_sym_preproc_def_token1] = ACTIONS(1082), + [aux_sym_preproc_if_token1] = ACTIONS(1082), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1082), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1082), + [sym_preproc_directive] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1084), + [anon_sym_typedef] = ACTIONS(1082), + [anon_sym_extern] = ACTIONS(1082), + [anon_sym___attribute__] = ACTIONS(1082), + [anon_sym_LPAREN2] = ACTIONS(1084), + [anon_sym_LBRACE] = ACTIONS(1084), + [anon_sym_RBRACE] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1082), + [anon_sym_auto] = ACTIONS(1082), + [anon_sym_register] = ACTIONS(1082), + [anon_sym_inline] = ACTIONS(1082), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_volatile] = ACTIONS(1082), + [anon_sym_restrict] = ACTIONS(1082), + [anon_sym__Atomic] = ACTIONS(1082), + [anon_sym_signed] = ACTIONS(1082), + [anon_sym_unsigned] = ACTIONS(1082), + [anon_sym_long] = ACTIONS(1082), + [anon_sym_short] = ACTIONS(1082), + [sym_primitive_type] = ACTIONS(1082), + [anon_sym_enum] = ACTIONS(1082), + [anon_sym_struct] = ACTIONS(1082), + [anon_sym_union] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_else] = ACTIONS(1082), + [anon_sym_switch] = ACTIONS(1082), + [anon_sym_case] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_do] = ACTIONS(1082), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_return] = ACTIONS(1082), + [anon_sym_break] = ACTIONS(1082), + [anon_sym_continue] = ACTIONS(1082), + [anon_sym_goto] = ACTIONS(1082), + [anon_sym_AMP] = ACTIONS(1084), + [anon_sym_BANG] = ACTIONS(1084), + [anon_sym_TILDE] = ACTIONS(1084), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH_DASH] = ACTIONS(1084), + [anon_sym_PLUS_PLUS] = ACTIONS(1084), + [anon_sym_sizeof] = ACTIONS(1082), + [sym_number_literal] = ACTIONS(1084), + [anon_sym_L_SQUOTE] = ACTIONS(1084), + [anon_sym_u_SQUOTE] = ACTIONS(1084), + [anon_sym_U_SQUOTE] = ACTIONS(1084), + [anon_sym_u8_SQUOTE] = ACTIONS(1084), + [anon_sym_SQUOTE] = ACTIONS(1084), + [anon_sym_L_DQUOTE] = ACTIONS(1084), + [anon_sym_u_DQUOTE] = ACTIONS(1084), + [anon_sym_U_DQUOTE] = ACTIONS(1084), + [anon_sym_u8_DQUOTE] = ACTIONS(1084), + [anon_sym_DQUOTE] = ACTIONS(1084), + [sym_true] = ACTIONS(1082), + [sym_false] = ACTIONS(1082), + [sym_null] = ACTIONS(1082), + [sym_comment] = ACTIONS(3), + }, + [212] = { + [sym_identifier] = ACTIONS(984), + [aux_sym_preproc_include_token1] = ACTIONS(984), + [aux_sym_preproc_def_token1] = ACTIONS(984), + [aux_sym_preproc_if_token1] = ACTIONS(984), + [aux_sym_preproc_if_token2] = ACTIONS(984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(984), + [sym_preproc_directive] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_typedef] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym___attribute__] = ACTIONS(984), + [anon_sym_LPAREN2] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_static] = ACTIONS(984), + [anon_sym_auto] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_inline] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [anon_sym_volatile] = ACTIONS(984), + [anon_sym_restrict] = ACTIONS(984), + [anon_sym__Atomic] = ACTIONS(984), + [anon_sym_signed] = ACTIONS(984), + [anon_sym_unsigned] = ACTIONS(984), + [anon_sym_long] = ACTIONS(984), + [anon_sym_short] = ACTIONS(984), + [sym_primitive_type] = ACTIONS(984), + [anon_sym_enum] = ACTIONS(984), + [anon_sym_struct] = ACTIONS(984), + [anon_sym_union] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_switch] = ACTIONS(984), + [anon_sym_case] = ACTIONS(984), + [anon_sym_default] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_goto] = ACTIONS(984), + [anon_sym_AMP] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_TILDE] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym_PLUS_PLUS] = ACTIONS(986), + [anon_sym_sizeof] = ACTIONS(984), + [sym_number_literal] = ACTIONS(986), + [anon_sym_L_SQUOTE] = ACTIONS(986), + [anon_sym_u_SQUOTE] = ACTIONS(986), + [anon_sym_U_SQUOTE] = ACTIONS(986), + [anon_sym_u8_SQUOTE] = ACTIONS(986), + [anon_sym_SQUOTE] = ACTIONS(986), + [anon_sym_L_DQUOTE] = ACTIONS(986), + [anon_sym_u_DQUOTE] = ACTIONS(986), + [anon_sym_U_DQUOTE] = ACTIONS(986), + [anon_sym_u8_DQUOTE] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym_true] = ACTIONS(984), + [sym_false] = ACTIONS(984), + [sym_null] = ACTIONS(984), + [sym_comment] = ACTIONS(3), + }, + [213] = { + [sym_identifier] = ACTIONS(1000), + [aux_sym_preproc_include_token1] = ACTIONS(1000), + [aux_sym_preproc_def_token1] = ACTIONS(1000), + [aux_sym_preproc_if_token1] = ACTIONS(1000), + [aux_sym_preproc_if_token2] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), + [sym_preproc_directive] = ACTIONS(1000), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_typedef] = ACTIONS(1000), + [anon_sym_extern] = ACTIONS(1000), + [anon_sym___attribute__] = ACTIONS(1000), + [anon_sym_LPAREN2] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1002), + [anon_sym_static] = ACTIONS(1000), + [anon_sym_auto] = ACTIONS(1000), + [anon_sym_register] = ACTIONS(1000), + [anon_sym_inline] = ACTIONS(1000), + [anon_sym_const] = ACTIONS(1000), + [anon_sym_volatile] = ACTIONS(1000), + [anon_sym_restrict] = ACTIONS(1000), + [anon_sym__Atomic] = ACTIONS(1000), + [anon_sym_signed] = ACTIONS(1000), + [anon_sym_unsigned] = ACTIONS(1000), + [anon_sym_long] = ACTIONS(1000), + [anon_sym_short] = ACTIONS(1000), + [sym_primitive_type] = ACTIONS(1000), + [anon_sym_enum] = ACTIONS(1000), + [anon_sym_struct] = ACTIONS(1000), + [anon_sym_union] = ACTIONS(1000), + [anon_sym_if] = ACTIONS(1000), + [anon_sym_else] = ACTIONS(1000), + [anon_sym_switch] = ACTIONS(1000), + [anon_sym_case] = ACTIONS(1000), + [anon_sym_default] = ACTIONS(1000), + [anon_sym_while] = ACTIONS(1000), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_for] = ACTIONS(1000), + [anon_sym_return] = ACTIONS(1000), + [anon_sym_break] = ACTIONS(1000), + [anon_sym_continue] = ACTIONS(1000), + [anon_sym_goto] = ACTIONS(1000), + [anon_sym_AMP] = ACTIONS(1002), + [anon_sym_BANG] = ACTIONS(1002), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1000), + [anon_sym_PLUS] = ACTIONS(1000), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_sizeof] = ACTIONS(1000), + [sym_number_literal] = ACTIONS(1002), + [anon_sym_L_SQUOTE] = ACTIONS(1002), + [anon_sym_u_SQUOTE] = ACTIONS(1002), + [anon_sym_U_SQUOTE] = ACTIONS(1002), + [anon_sym_u8_SQUOTE] = ACTIONS(1002), + [anon_sym_SQUOTE] = ACTIONS(1002), + [anon_sym_L_DQUOTE] = ACTIONS(1002), + [anon_sym_u_DQUOTE] = ACTIONS(1002), + [anon_sym_U_DQUOTE] = ACTIONS(1002), + [anon_sym_u8_DQUOTE] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym_true] = ACTIONS(1000), + [sym_false] = ACTIONS(1000), + [sym_null] = ACTIONS(1000), + [sym_comment] = ACTIONS(3), + }, + [214] = { + [ts_builtin_sym_end] = ACTIONS(1062), + [sym_identifier] = ACTIONS(1060), + [aux_sym_preproc_include_token1] = ACTIONS(1060), + [aux_sym_preproc_def_token1] = ACTIONS(1060), + [aux_sym_preproc_if_token1] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), + [sym_preproc_directive] = ACTIONS(1060), + [anon_sym_SEMI] = ACTIONS(1062), + [anon_sym_typedef] = ACTIONS(1060), + [anon_sym_extern] = ACTIONS(1060), + [anon_sym___attribute__] = ACTIONS(1060), + [anon_sym_LPAREN2] = ACTIONS(1062), + [anon_sym_LBRACE] = ACTIONS(1062), + [anon_sym_STAR] = ACTIONS(1062), + [anon_sym_static] = ACTIONS(1060), + [anon_sym_auto] = ACTIONS(1060), + [anon_sym_register] = ACTIONS(1060), + [anon_sym_inline] = ACTIONS(1060), + [anon_sym_const] = ACTIONS(1060), + [anon_sym_volatile] = ACTIONS(1060), + [anon_sym_restrict] = ACTIONS(1060), + [anon_sym__Atomic] = ACTIONS(1060), + [anon_sym_signed] = ACTIONS(1060), + [anon_sym_unsigned] = ACTIONS(1060), + [anon_sym_long] = ACTIONS(1060), + [anon_sym_short] = ACTIONS(1060), + [sym_primitive_type] = ACTIONS(1060), + [anon_sym_enum] = ACTIONS(1060), + [anon_sym_struct] = ACTIONS(1060), + [anon_sym_union] = ACTIONS(1060), + [anon_sym_if] = ACTIONS(1060), + [anon_sym_else] = ACTIONS(1060), + [anon_sym_switch] = ACTIONS(1060), + [anon_sym_case] = ACTIONS(1060), + [anon_sym_default] = ACTIONS(1060), + [anon_sym_while] = ACTIONS(1060), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_for] = ACTIONS(1060), + [anon_sym_return] = ACTIONS(1060), + [anon_sym_break] = ACTIONS(1060), + [anon_sym_continue] = ACTIONS(1060), + [anon_sym_goto] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_BANG] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1060), + [anon_sym_PLUS] = ACTIONS(1060), + [anon_sym_DASH_DASH] = ACTIONS(1062), + [anon_sym_PLUS_PLUS] = ACTIONS(1062), + [anon_sym_sizeof] = ACTIONS(1060), + [sym_number_literal] = ACTIONS(1062), + [anon_sym_L_SQUOTE] = ACTIONS(1062), + [anon_sym_u_SQUOTE] = ACTIONS(1062), + [anon_sym_U_SQUOTE] = ACTIONS(1062), + [anon_sym_u8_SQUOTE] = ACTIONS(1062), + [anon_sym_SQUOTE] = ACTIONS(1062), + [anon_sym_L_DQUOTE] = ACTIONS(1062), + [anon_sym_u_DQUOTE] = ACTIONS(1062), + [anon_sym_U_DQUOTE] = ACTIONS(1062), + [anon_sym_u8_DQUOTE] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1062), + [sym_true] = ACTIONS(1060), + [sym_false] = ACTIONS(1060), + [sym_null] = ACTIONS(1060), + [sym_comment] = ACTIONS(3), + }, + [215] = { + [sym_identifier] = ACTIONS(1008), + [aux_sym_preproc_include_token1] = ACTIONS(1008), + [aux_sym_preproc_def_token1] = ACTIONS(1008), + [aux_sym_preproc_if_token1] = ACTIONS(1008), + [aux_sym_preproc_if_token2] = ACTIONS(1008), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1008), + [sym_preproc_directive] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_typedef] = ACTIONS(1008), + [anon_sym_extern] = ACTIONS(1008), + [anon_sym___attribute__] = ACTIONS(1008), + [anon_sym_LPAREN2] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_static] = ACTIONS(1008), + [anon_sym_auto] = ACTIONS(1008), + [anon_sym_register] = ACTIONS(1008), + [anon_sym_inline] = ACTIONS(1008), + [anon_sym_const] = ACTIONS(1008), + [anon_sym_volatile] = ACTIONS(1008), + [anon_sym_restrict] = ACTIONS(1008), + [anon_sym__Atomic] = ACTIONS(1008), + [anon_sym_signed] = ACTIONS(1008), + [anon_sym_unsigned] = ACTIONS(1008), + [anon_sym_long] = ACTIONS(1008), + [anon_sym_short] = ACTIONS(1008), + [sym_primitive_type] = ACTIONS(1008), + [anon_sym_enum] = ACTIONS(1008), + [anon_sym_struct] = ACTIONS(1008), + [anon_sym_union] = ACTIONS(1008), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_else] = ACTIONS(1008), + [anon_sym_switch] = ACTIONS(1008), + [anon_sym_case] = ACTIONS(1008), + [anon_sym_default] = ACTIONS(1008), + [anon_sym_while] = ACTIONS(1008), + [anon_sym_do] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1008), + [anon_sym_return] = ACTIONS(1008), + [anon_sym_break] = ACTIONS(1008), + [anon_sym_continue] = ACTIONS(1008), + [anon_sym_goto] = ACTIONS(1008), + [anon_sym_AMP] = ACTIONS(1010), + [anon_sym_BANG] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_sizeof] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(1010), + [anon_sym_L_SQUOTE] = ACTIONS(1010), + [anon_sym_u_SQUOTE] = ACTIONS(1010), + [anon_sym_U_SQUOTE] = ACTIONS(1010), + [anon_sym_u8_SQUOTE] = ACTIONS(1010), + [anon_sym_SQUOTE] = ACTIONS(1010), + [anon_sym_L_DQUOTE] = ACTIONS(1010), + [anon_sym_u_DQUOTE] = ACTIONS(1010), + [anon_sym_U_DQUOTE] = ACTIONS(1010), + [anon_sym_u8_DQUOTE] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym_true] = ACTIONS(1008), + [sym_false] = ACTIONS(1008), + [sym_null] = ACTIONS(1008), + [sym_comment] = ACTIONS(3), + }, + [216] = { + [sym_identifier] = ACTIONS(1040), + [aux_sym_preproc_include_token1] = ACTIONS(1040), + [aux_sym_preproc_def_token1] = ACTIONS(1040), + [aux_sym_preproc_if_token1] = ACTIONS(1040), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), + [sym_preproc_directive] = ACTIONS(1040), + [anon_sym_SEMI] = ACTIONS(1042), + [anon_sym_typedef] = ACTIONS(1040), + [anon_sym_extern] = ACTIONS(1040), + [anon_sym___attribute__] = ACTIONS(1040), + [anon_sym_LPAREN2] = ACTIONS(1042), + [anon_sym_LBRACE] = ACTIONS(1042), + [anon_sym_RBRACE] = ACTIONS(1042), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_static] = ACTIONS(1040), + [anon_sym_auto] = ACTIONS(1040), + [anon_sym_register] = ACTIONS(1040), + [anon_sym_inline] = ACTIONS(1040), + [anon_sym_const] = ACTIONS(1040), + [anon_sym_volatile] = ACTIONS(1040), + [anon_sym_restrict] = ACTIONS(1040), + [anon_sym__Atomic] = ACTIONS(1040), + [anon_sym_signed] = ACTIONS(1040), + [anon_sym_unsigned] = ACTIONS(1040), + [anon_sym_long] = ACTIONS(1040), + [anon_sym_short] = ACTIONS(1040), + [sym_primitive_type] = ACTIONS(1040), + [anon_sym_enum] = ACTIONS(1040), + [anon_sym_struct] = ACTIONS(1040), + [anon_sym_union] = ACTIONS(1040), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(1040), + [anon_sym_switch] = ACTIONS(1040), + [anon_sym_case] = ACTIONS(1040), + [anon_sym_default] = ACTIONS(1040), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_do] = ACTIONS(1040), + [anon_sym_for] = ACTIONS(1040), + [anon_sym_return] = ACTIONS(1040), + [anon_sym_break] = ACTIONS(1040), + [anon_sym_continue] = ACTIONS(1040), + [anon_sym_goto] = ACTIONS(1040), + [anon_sym_AMP] = ACTIONS(1042), + [anon_sym_BANG] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1040), + [anon_sym_PLUS] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1042), + [anon_sym_sizeof] = ACTIONS(1040), + [sym_number_literal] = ACTIONS(1042), + [anon_sym_L_SQUOTE] = ACTIONS(1042), + [anon_sym_u_SQUOTE] = ACTIONS(1042), + [anon_sym_U_SQUOTE] = ACTIONS(1042), + [anon_sym_u8_SQUOTE] = ACTIONS(1042), + [anon_sym_SQUOTE] = ACTIONS(1042), + [anon_sym_L_DQUOTE] = ACTIONS(1042), + [anon_sym_u_DQUOTE] = ACTIONS(1042), + [anon_sym_U_DQUOTE] = ACTIONS(1042), + [anon_sym_u8_DQUOTE] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(1042), + [sym_true] = ACTIONS(1040), + [sym_false] = ACTIONS(1040), + [sym_null] = ACTIONS(1040), + [sym_comment] = ACTIONS(3), + }, + [217] = { + [sym_identifier] = ACTIONS(1086), + [aux_sym_preproc_include_token1] = ACTIONS(1086), + [aux_sym_preproc_def_token1] = ACTIONS(1086), + [aux_sym_preproc_if_token1] = ACTIONS(1086), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1086), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1086), + [sym_preproc_directive] = ACTIONS(1086), + [anon_sym_SEMI] = ACTIONS(1088), + [anon_sym_typedef] = ACTIONS(1086), + [anon_sym_extern] = ACTIONS(1086), + [anon_sym___attribute__] = ACTIONS(1086), + [anon_sym_LPAREN2] = ACTIONS(1088), + [anon_sym_LBRACE] = ACTIONS(1088), + [anon_sym_RBRACE] = ACTIONS(1088), + [anon_sym_STAR] = ACTIONS(1088), + [anon_sym_static] = ACTIONS(1086), + [anon_sym_auto] = ACTIONS(1086), + [anon_sym_register] = ACTIONS(1086), + [anon_sym_inline] = ACTIONS(1086), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_volatile] = ACTIONS(1086), + [anon_sym_restrict] = ACTIONS(1086), + [anon_sym__Atomic] = ACTIONS(1086), + [anon_sym_signed] = ACTIONS(1086), + [anon_sym_unsigned] = ACTIONS(1086), + [anon_sym_long] = ACTIONS(1086), + [anon_sym_short] = ACTIONS(1086), + [sym_primitive_type] = ACTIONS(1086), + [anon_sym_enum] = ACTIONS(1086), + [anon_sym_struct] = ACTIONS(1086), + [anon_sym_union] = ACTIONS(1086), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_else] = ACTIONS(1086), + [anon_sym_switch] = ACTIONS(1086), + [anon_sym_case] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(1086), + [anon_sym_while] = ACTIONS(1086), + [anon_sym_do] = ACTIONS(1086), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1086), + [anon_sym_break] = ACTIONS(1086), + [anon_sym_continue] = ACTIONS(1086), + [anon_sym_goto] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_TILDE] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_DASH_DASH] = ACTIONS(1088), + [anon_sym_PLUS_PLUS] = ACTIONS(1088), + [anon_sym_sizeof] = ACTIONS(1086), + [sym_number_literal] = ACTIONS(1088), + [anon_sym_L_SQUOTE] = ACTIONS(1088), + [anon_sym_u_SQUOTE] = ACTIONS(1088), + [anon_sym_U_SQUOTE] = ACTIONS(1088), + [anon_sym_u8_SQUOTE] = ACTIONS(1088), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_L_DQUOTE] = ACTIONS(1088), + [anon_sym_u_DQUOTE] = ACTIONS(1088), + [anon_sym_U_DQUOTE] = ACTIONS(1088), + [anon_sym_u8_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1088), + [sym_true] = ACTIONS(1086), + [sym_false] = ACTIONS(1086), + [sym_null] = ACTIONS(1086), + [sym_comment] = ACTIONS(3), + }, + [218] = { + [ts_builtin_sym_end] = ACTIONS(1034), + [sym_identifier] = ACTIONS(1032), + [aux_sym_preproc_include_token1] = ACTIONS(1032), + [aux_sym_preproc_def_token1] = ACTIONS(1032), + [aux_sym_preproc_if_token1] = ACTIONS(1032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1032), + [sym_preproc_directive] = ACTIONS(1032), + [anon_sym_SEMI] = ACTIONS(1034), + [anon_sym_typedef] = ACTIONS(1032), + [anon_sym_extern] = ACTIONS(1032), + [anon_sym___attribute__] = ACTIONS(1032), + [anon_sym_LPAREN2] = ACTIONS(1034), + [anon_sym_LBRACE] = ACTIONS(1034), + [anon_sym_STAR] = ACTIONS(1034), + [anon_sym_static] = ACTIONS(1032), + [anon_sym_auto] = ACTIONS(1032), + [anon_sym_register] = ACTIONS(1032), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_const] = ACTIONS(1032), + [anon_sym_volatile] = ACTIONS(1032), + [anon_sym_restrict] = ACTIONS(1032), + [anon_sym__Atomic] = ACTIONS(1032), + [anon_sym_signed] = ACTIONS(1032), + [anon_sym_unsigned] = ACTIONS(1032), + [anon_sym_long] = ACTIONS(1032), + [anon_sym_short] = ACTIONS(1032), + [sym_primitive_type] = ACTIONS(1032), + [anon_sym_enum] = ACTIONS(1032), + [anon_sym_struct] = ACTIONS(1032), + [anon_sym_union] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_else] = ACTIONS(1032), + [anon_sym_switch] = ACTIONS(1032), + [anon_sym_case] = ACTIONS(1032), + [anon_sym_default] = ACTIONS(1032), + [anon_sym_while] = ACTIONS(1032), + [anon_sym_do] = ACTIONS(1032), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_return] = ACTIONS(1032), + [anon_sym_break] = ACTIONS(1032), + [anon_sym_continue] = ACTIONS(1032), + [anon_sym_goto] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(1034), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_TILDE] = ACTIONS(1034), + [anon_sym_DASH] = ACTIONS(1032), + [anon_sym_PLUS] = ACTIONS(1032), + [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_PLUS_PLUS] = ACTIONS(1034), + [anon_sym_sizeof] = ACTIONS(1032), + [sym_number_literal] = ACTIONS(1034), + [anon_sym_L_SQUOTE] = ACTIONS(1034), + [anon_sym_u_SQUOTE] = ACTIONS(1034), + [anon_sym_U_SQUOTE] = ACTIONS(1034), + [anon_sym_u8_SQUOTE] = ACTIONS(1034), + [anon_sym_SQUOTE] = ACTIONS(1034), + [anon_sym_L_DQUOTE] = ACTIONS(1034), + [anon_sym_u_DQUOTE] = ACTIONS(1034), + [anon_sym_U_DQUOTE] = ACTIONS(1034), + [anon_sym_u8_DQUOTE] = ACTIONS(1034), + [anon_sym_DQUOTE] = ACTIONS(1034), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_comment] = ACTIONS(3), + }, + [219] = { + [ts_builtin_sym_end] = ACTIONS(1088), + [sym_identifier] = ACTIONS(1086), + [aux_sym_preproc_include_token1] = ACTIONS(1086), + [aux_sym_preproc_def_token1] = ACTIONS(1086), + [aux_sym_preproc_if_token1] = ACTIONS(1086), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1086), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1086), + [sym_preproc_directive] = ACTIONS(1086), + [anon_sym_SEMI] = ACTIONS(1088), + [anon_sym_typedef] = ACTIONS(1086), + [anon_sym_extern] = ACTIONS(1086), + [anon_sym___attribute__] = ACTIONS(1086), + [anon_sym_LPAREN2] = ACTIONS(1088), + [anon_sym_LBRACE] = ACTIONS(1088), + [anon_sym_STAR] = ACTIONS(1088), + [anon_sym_static] = ACTIONS(1086), + [anon_sym_auto] = ACTIONS(1086), + [anon_sym_register] = ACTIONS(1086), + [anon_sym_inline] = ACTIONS(1086), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_volatile] = ACTIONS(1086), + [anon_sym_restrict] = ACTIONS(1086), + [anon_sym__Atomic] = ACTIONS(1086), + [anon_sym_signed] = ACTIONS(1086), + [anon_sym_unsigned] = ACTIONS(1086), + [anon_sym_long] = ACTIONS(1086), + [anon_sym_short] = ACTIONS(1086), + [sym_primitive_type] = ACTIONS(1086), + [anon_sym_enum] = ACTIONS(1086), + [anon_sym_struct] = ACTIONS(1086), + [anon_sym_union] = ACTIONS(1086), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_else] = ACTIONS(1086), + [anon_sym_switch] = ACTIONS(1086), + [anon_sym_case] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(1086), + [anon_sym_while] = ACTIONS(1086), + [anon_sym_do] = ACTIONS(1086), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1086), + [anon_sym_break] = ACTIONS(1086), + [anon_sym_continue] = ACTIONS(1086), + [anon_sym_goto] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_TILDE] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_DASH_DASH] = ACTIONS(1088), + [anon_sym_PLUS_PLUS] = ACTIONS(1088), + [anon_sym_sizeof] = ACTIONS(1086), + [sym_number_literal] = ACTIONS(1088), + [anon_sym_L_SQUOTE] = ACTIONS(1088), + [anon_sym_u_SQUOTE] = ACTIONS(1088), + [anon_sym_U_SQUOTE] = ACTIONS(1088), + [anon_sym_u8_SQUOTE] = ACTIONS(1088), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_L_DQUOTE] = ACTIONS(1088), + [anon_sym_u_DQUOTE] = ACTIONS(1088), + [anon_sym_U_DQUOTE] = ACTIONS(1088), + [anon_sym_u8_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1088), + [sym_true] = ACTIONS(1086), + [sym_false] = ACTIONS(1086), + [sym_null] = ACTIONS(1086), + [sym_comment] = ACTIONS(3), + }, + [220] = { + [sym_identifier] = ACTIONS(1040), + [aux_sym_preproc_include_token1] = ACTIONS(1040), + [aux_sym_preproc_def_token1] = ACTIONS(1040), + [aux_sym_preproc_if_token1] = ACTIONS(1040), + [aux_sym_preproc_if_token2] = ACTIONS(1040), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), + [sym_preproc_directive] = ACTIONS(1040), + [anon_sym_SEMI] = ACTIONS(1042), + [anon_sym_typedef] = ACTIONS(1040), + [anon_sym_extern] = ACTIONS(1040), + [anon_sym___attribute__] = ACTIONS(1040), + [anon_sym_LPAREN2] = ACTIONS(1042), + [anon_sym_LBRACE] = ACTIONS(1042), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_static] = ACTIONS(1040), + [anon_sym_auto] = ACTIONS(1040), + [anon_sym_register] = ACTIONS(1040), + [anon_sym_inline] = ACTIONS(1040), + [anon_sym_const] = ACTIONS(1040), + [anon_sym_volatile] = ACTIONS(1040), + [anon_sym_restrict] = ACTIONS(1040), + [anon_sym__Atomic] = ACTIONS(1040), + [anon_sym_signed] = ACTIONS(1040), + [anon_sym_unsigned] = ACTIONS(1040), + [anon_sym_long] = ACTIONS(1040), + [anon_sym_short] = ACTIONS(1040), + [sym_primitive_type] = ACTIONS(1040), + [anon_sym_enum] = ACTIONS(1040), + [anon_sym_struct] = ACTIONS(1040), + [anon_sym_union] = ACTIONS(1040), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(1040), + [anon_sym_switch] = ACTIONS(1040), + [anon_sym_case] = ACTIONS(1040), + [anon_sym_default] = ACTIONS(1040), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_do] = ACTIONS(1040), + [anon_sym_for] = ACTIONS(1040), + [anon_sym_return] = ACTIONS(1040), + [anon_sym_break] = ACTIONS(1040), + [anon_sym_continue] = ACTIONS(1040), + [anon_sym_goto] = ACTIONS(1040), + [anon_sym_AMP] = ACTIONS(1042), + [anon_sym_BANG] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1040), + [anon_sym_PLUS] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1042), + [anon_sym_sizeof] = ACTIONS(1040), + [sym_number_literal] = ACTIONS(1042), + [anon_sym_L_SQUOTE] = ACTIONS(1042), + [anon_sym_u_SQUOTE] = ACTIONS(1042), + [anon_sym_U_SQUOTE] = ACTIONS(1042), + [anon_sym_u8_SQUOTE] = ACTIONS(1042), + [anon_sym_SQUOTE] = ACTIONS(1042), + [anon_sym_L_DQUOTE] = ACTIONS(1042), + [anon_sym_u_DQUOTE] = ACTIONS(1042), + [anon_sym_U_DQUOTE] = ACTIONS(1042), + [anon_sym_u8_DQUOTE] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(1042), + [sym_true] = ACTIONS(1040), + [sym_false] = ACTIONS(1040), + [sym_null] = ACTIONS(1040), + [sym_comment] = ACTIONS(3), + }, + [221] = { + [ts_builtin_sym_end] = ACTIONS(1084), + [sym_identifier] = ACTIONS(1082), + [aux_sym_preproc_include_token1] = ACTIONS(1082), + [aux_sym_preproc_def_token1] = ACTIONS(1082), + [aux_sym_preproc_if_token1] = ACTIONS(1082), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1082), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1082), + [sym_preproc_directive] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1084), + [anon_sym_typedef] = ACTIONS(1082), + [anon_sym_extern] = ACTIONS(1082), + [anon_sym___attribute__] = ACTIONS(1082), + [anon_sym_LPAREN2] = ACTIONS(1084), + [anon_sym_LBRACE] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1082), + [anon_sym_auto] = ACTIONS(1082), + [anon_sym_register] = ACTIONS(1082), + [anon_sym_inline] = ACTIONS(1082), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_volatile] = ACTIONS(1082), + [anon_sym_restrict] = ACTIONS(1082), + [anon_sym__Atomic] = ACTIONS(1082), + [anon_sym_signed] = ACTIONS(1082), + [anon_sym_unsigned] = ACTIONS(1082), + [anon_sym_long] = ACTIONS(1082), + [anon_sym_short] = ACTIONS(1082), + [sym_primitive_type] = ACTIONS(1082), + [anon_sym_enum] = ACTIONS(1082), + [anon_sym_struct] = ACTIONS(1082), + [anon_sym_union] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_else] = ACTIONS(1082), + [anon_sym_switch] = ACTIONS(1082), + [anon_sym_case] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_do] = ACTIONS(1082), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_return] = ACTIONS(1082), + [anon_sym_break] = ACTIONS(1082), + [anon_sym_continue] = ACTIONS(1082), + [anon_sym_goto] = ACTIONS(1082), + [anon_sym_AMP] = ACTIONS(1084), + [anon_sym_BANG] = ACTIONS(1084), + [anon_sym_TILDE] = ACTIONS(1084), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH_DASH] = ACTIONS(1084), + [anon_sym_PLUS_PLUS] = ACTIONS(1084), + [anon_sym_sizeof] = ACTIONS(1082), + [sym_number_literal] = ACTIONS(1084), + [anon_sym_L_SQUOTE] = ACTIONS(1084), + [anon_sym_u_SQUOTE] = ACTIONS(1084), + [anon_sym_U_SQUOTE] = ACTIONS(1084), + [anon_sym_u8_SQUOTE] = ACTIONS(1084), + [anon_sym_SQUOTE] = ACTIONS(1084), + [anon_sym_L_DQUOTE] = ACTIONS(1084), + [anon_sym_u_DQUOTE] = ACTIONS(1084), + [anon_sym_U_DQUOTE] = ACTIONS(1084), + [anon_sym_u8_DQUOTE] = ACTIONS(1084), + [anon_sym_DQUOTE] = ACTIONS(1084), + [sym_true] = ACTIONS(1082), + [sym_false] = ACTIONS(1082), + [sym_null] = ACTIONS(1082), + [sym_comment] = ACTIONS(3), + }, + [222] = { + [sym_identifier] = ACTIONS(992), + [aux_sym_preproc_include_token1] = ACTIONS(992), + [aux_sym_preproc_def_token1] = ACTIONS(992), + [aux_sym_preproc_if_token1] = ACTIONS(992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(992), + [sym_preproc_directive] = ACTIONS(992), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_typedef] = ACTIONS(992), + [anon_sym_extern] = ACTIONS(992), + [anon_sym___attribute__] = ACTIONS(992), + [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym_STAR] = ACTIONS(994), + [anon_sym_static] = ACTIONS(992), + [anon_sym_auto] = ACTIONS(992), + [anon_sym_register] = ACTIONS(992), + [anon_sym_inline] = ACTIONS(992), + [anon_sym_const] = ACTIONS(992), + [anon_sym_volatile] = ACTIONS(992), + [anon_sym_restrict] = ACTIONS(992), + [anon_sym__Atomic] = ACTIONS(992), + [anon_sym_signed] = ACTIONS(992), + [anon_sym_unsigned] = ACTIONS(992), + [anon_sym_long] = ACTIONS(992), + [anon_sym_short] = ACTIONS(992), + [sym_primitive_type] = ACTIONS(992), + [anon_sym_enum] = ACTIONS(992), + [anon_sym_struct] = ACTIONS(992), + [anon_sym_union] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_else] = ACTIONS(992), + [anon_sym_switch] = ACTIONS(992), + [anon_sym_case] = ACTIONS(992), + [anon_sym_default] = ACTIONS(992), + [anon_sym_while] = ACTIONS(992), + [anon_sym_do] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_return] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_goto] = ACTIONS(992), + [anon_sym_AMP] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_sizeof] = ACTIONS(992), + [sym_number_literal] = ACTIONS(994), + [anon_sym_L_SQUOTE] = ACTIONS(994), + [anon_sym_u_SQUOTE] = ACTIONS(994), + [anon_sym_U_SQUOTE] = ACTIONS(994), + [anon_sym_u8_SQUOTE] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(994), + [anon_sym_L_DQUOTE] = ACTIONS(994), + [anon_sym_u_DQUOTE] = ACTIONS(994), + [anon_sym_U_DQUOTE] = ACTIONS(994), + [anon_sym_u8_DQUOTE] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(994), + [sym_true] = ACTIONS(992), + [sym_false] = ACTIONS(992), + [sym_null] = ACTIONS(992), + [sym_comment] = ACTIONS(3), + }, + [223] = { + [sym_identifier] = ACTIONS(1032), + [aux_sym_preproc_include_token1] = ACTIONS(1032), + [aux_sym_preproc_def_token1] = ACTIONS(1032), + [aux_sym_preproc_if_token1] = ACTIONS(1032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1032), + [sym_preproc_directive] = ACTIONS(1032), + [anon_sym_SEMI] = ACTIONS(1034), + [anon_sym_typedef] = ACTIONS(1032), + [anon_sym_extern] = ACTIONS(1032), + [anon_sym___attribute__] = ACTIONS(1032), + [anon_sym_LPAREN2] = ACTIONS(1034), + [anon_sym_LBRACE] = ACTIONS(1034), + [anon_sym_RBRACE] = ACTIONS(1034), + [anon_sym_STAR] = ACTIONS(1034), + [anon_sym_static] = ACTIONS(1032), + [anon_sym_auto] = ACTIONS(1032), + [anon_sym_register] = ACTIONS(1032), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_const] = ACTIONS(1032), + [anon_sym_volatile] = ACTIONS(1032), + [anon_sym_restrict] = ACTIONS(1032), + [anon_sym__Atomic] = ACTIONS(1032), + [anon_sym_signed] = ACTIONS(1032), + [anon_sym_unsigned] = ACTIONS(1032), + [anon_sym_long] = ACTIONS(1032), + [anon_sym_short] = ACTIONS(1032), + [sym_primitive_type] = ACTIONS(1032), + [anon_sym_enum] = ACTIONS(1032), + [anon_sym_struct] = ACTIONS(1032), + [anon_sym_union] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_else] = ACTIONS(1032), + [anon_sym_switch] = ACTIONS(1032), + [anon_sym_case] = ACTIONS(1032), + [anon_sym_default] = ACTIONS(1032), + [anon_sym_while] = ACTIONS(1032), + [anon_sym_do] = ACTIONS(1032), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_return] = ACTIONS(1032), + [anon_sym_break] = ACTIONS(1032), + [anon_sym_continue] = ACTIONS(1032), + [anon_sym_goto] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(1034), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_TILDE] = ACTIONS(1034), + [anon_sym_DASH] = ACTIONS(1032), + [anon_sym_PLUS] = ACTIONS(1032), + [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_PLUS_PLUS] = ACTIONS(1034), + [anon_sym_sizeof] = ACTIONS(1032), + [sym_number_literal] = ACTIONS(1034), + [anon_sym_L_SQUOTE] = ACTIONS(1034), + [anon_sym_u_SQUOTE] = ACTIONS(1034), + [anon_sym_U_SQUOTE] = ACTIONS(1034), + [anon_sym_u8_SQUOTE] = ACTIONS(1034), + [anon_sym_SQUOTE] = ACTIONS(1034), + [anon_sym_L_DQUOTE] = ACTIONS(1034), + [anon_sym_u_DQUOTE] = ACTIONS(1034), + [anon_sym_U_DQUOTE] = ACTIONS(1034), + [anon_sym_u8_DQUOTE] = ACTIONS(1034), + [anon_sym_DQUOTE] = ACTIONS(1034), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_comment] = ACTIONS(3), + }, + [224] = { + [sym_identifier] = ACTIONS(1004), + [aux_sym_preproc_include_token1] = ACTIONS(1004), + [aux_sym_preproc_def_token1] = ACTIONS(1004), + [aux_sym_preproc_if_token1] = ACTIONS(1004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1004), + [sym_preproc_directive] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym_typedef] = ACTIONS(1004), + [anon_sym_extern] = ACTIONS(1004), + [anon_sym___attribute__] = ACTIONS(1004), + [anon_sym_LPAREN2] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1006), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_static] = ACTIONS(1004), + [anon_sym_auto] = ACTIONS(1004), + [anon_sym_register] = ACTIONS(1004), + [anon_sym_inline] = ACTIONS(1004), + [anon_sym_const] = ACTIONS(1004), + [anon_sym_volatile] = ACTIONS(1004), + [anon_sym_restrict] = ACTIONS(1004), + [anon_sym__Atomic] = ACTIONS(1004), + [anon_sym_signed] = ACTIONS(1004), + [anon_sym_unsigned] = ACTIONS(1004), + [anon_sym_long] = ACTIONS(1004), + [anon_sym_short] = ACTIONS(1004), + [sym_primitive_type] = ACTIONS(1004), + [anon_sym_enum] = ACTIONS(1004), + [anon_sym_struct] = ACTIONS(1004), + [anon_sym_union] = ACTIONS(1004), + [anon_sym_if] = ACTIONS(1004), + [anon_sym_else] = ACTIONS(1004), + [anon_sym_switch] = ACTIONS(1004), + [anon_sym_case] = ACTIONS(1004), + [anon_sym_default] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(1004), + [anon_sym_do] = ACTIONS(1004), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_return] = ACTIONS(1004), + [anon_sym_break] = ACTIONS(1004), + [anon_sym_continue] = ACTIONS(1004), + [anon_sym_goto] = ACTIONS(1004), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1004), + [sym_number_literal] = ACTIONS(1006), + [anon_sym_L_SQUOTE] = ACTIONS(1006), + [anon_sym_u_SQUOTE] = ACTIONS(1006), + [anon_sym_U_SQUOTE] = ACTIONS(1006), + [anon_sym_u8_SQUOTE] = ACTIONS(1006), + [anon_sym_SQUOTE] = ACTIONS(1006), + [anon_sym_L_DQUOTE] = ACTIONS(1006), + [anon_sym_u_DQUOTE] = ACTIONS(1006), + [anon_sym_U_DQUOTE] = ACTIONS(1006), + [anon_sym_u8_DQUOTE] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym_true] = ACTIONS(1004), + [sym_false] = ACTIONS(1004), + [sym_null] = ACTIONS(1004), + [sym_comment] = ACTIONS(3), + }, + [225] = { + [sym_identifier] = ACTIONS(1028), + [aux_sym_preproc_include_token1] = ACTIONS(1028), + [aux_sym_preproc_def_token1] = ACTIONS(1028), + [aux_sym_preproc_if_token1] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), + [sym_preproc_directive] = ACTIONS(1028), + [anon_sym_SEMI] = ACTIONS(1030), + [anon_sym_typedef] = ACTIONS(1028), + [anon_sym_extern] = ACTIONS(1028), + [anon_sym___attribute__] = ACTIONS(1028), + [anon_sym_LPAREN2] = ACTIONS(1030), + [anon_sym_LBRACE] = ACTIONS(1030), + [anon_sym_RBRACE] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_static] = ACTIONS(1028), + [anon_sym_auto] = ACTIONS(1028), + [anon_sym_register] = ACTIONS(1028), + [anon_sym_inline] = ACTIONS(1028), + [anon_sym_const] = ACTIONS(1028), + [anon_sym_volatile] = ACTIONS(1028), + [anon_sym_restrict] = ACTIONS(1028), + [anon_sym__Atomic] = ACTIONS(1028), + [anon_sym_signed] = ACTIONS(1028), + [anon_sym_unsigned] = ACTIONS(1028), + [anon_sym_long] = ACTIONS(1028), + [anon_sym_short] = ACTIONS(1028), + [sym_primitive_type] = ACTIONS(1028), + [anon_sym_enum] = ACTIONS(1028), + [anon_sym_struct] = ACTIONS(1028), + [anon_sym_union] = ACTIONS(1028), + [anon_sym_if] = ACTIONS(1028), + [anon_sym_else] = ACTIONS(1028), + [anon_sym_switch] = ACTIONS(1028), + [anon_sym_case] = ACTIONS(1028), + [anon_sym_default] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1028), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_break] = ACTIONS(1028), + [anon_sym_continue] = ACTIONS(1028), + [anon_sym_goto] = ACTIONS(1028), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_TILDE] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_sizeof] = ACTIONS(1028), + [sym_number_literal] = ACTIONS(1030), + [anon_sym_L_SQUOTE] = ACTIONS(1030), + [anon_sym_u_SQUOTE] = ACTIONS(1030), + [anon_sym_U_SQUOTE] = ACTIONS(1030), + [anon_sym_u8_SQUOTE] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_L_DQUOTE] = ACTIONS(1030), + [anon_sym_u_DQUOTE] = ACTIONS(1030), + [anon_sym_U_DQUOTE] = ACTIONS(1030), + [anon_sym_u8_DQUOTE] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym_true] = ACTIONS(1028), + [sym_false] = ACTIONS(1028), + [sym_null] = ACTIONS(1028), + [sym_comment] = ACTIONS(3), + }, + [226] = { + [sym_identifier] = ACTIONS(1060), + [aux_sym_preproc_include_token1] = ACTIONS(1060), + [aux_sym_preproc_def_token1] = ACTIONS(1060), + [aux_sym_preproc_if_token1] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), + [sym_preproc_directive] = ACTIONS(1060), + [anon_sym_SEMI] = ACTIONS(1062), + [anon_sym_typedef] = ACTIONS(1060), + [anon_sym_extern] = ACTIONS(1060), + [anon_sym___attribute__] = ACTIONS(1060), + [anon_sym_LPAREN2] = ACTIONS(1062), + [anon_sym_LBRACE] = ACTIONS(1062), + [anon_sym_RBRACE] = ACTIONS(1062), + [anon_sym_STAR] = ACTIONS(1062), + [anon_sym_static] = ACTIONS(1060), + [anon_sym_auto] = ACTIONS(1060), + [anon_sym_register] = ACTIONS(1060), + [anon_sym_inline] = ACTIONS(1060), + [anon_sym_const] = ACTIONS(1060), + [anon_sym_volatile] = ACTIONS(1060), + [anon_sym_restrict] = ACTIONS(1060), + [anon_sym__Atomic] = ACTIONS(1060), + [anon_sym_signed] = ACTIONS(1060), + [anon_sym_unsigned] = ACTIONS(1060), + [anon_sym_long] = ACTIONS(1060), + [anon_sym_short] = ACTIONS(1060), + [sym_primitive_type] = ACTIONS(1060), + [anon_sym_enum] = ACTIONS(1060), + [anon_sym_struct] = ACTIONS(1060), + [anon_sym_union] = ACTIONS(1060), + [anon_sym_if] = ACTIONS(1060), + [anon_sym_else] = ACTIONS(1060), + [anon_sym_switch] = ACTIONS(1060), + [anon_sym_case] = ACTIONS(1060), + [anon_sym_default] = ACTIONS(1060), + [anon_sym_while] = ACTIONS(1060), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_for] = ACTIONS(1060), + [anon_sym_return] = ACTIONS(1060), + [anon_sym_break] = ACTIONS(1060), + [anon_sym_continue] = ACTIONS(1060), + [anon_sym_goto] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_BANG] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1060), + [anon_sym_PLUS] = ACTIONS(1060), + [anon_sym_DASH_DASH] = ACTIONS(1062), + [anon_sym_PLUS_PLUS] = ACTIONS(1062), + [anon_sym_sizeof] = ACTIONS(1060), + [sym_number_literal] = ACTIONS(1062), + [anon_sym_L_SQUOTE] = ACTIONS(1062), + [anon_sym_u_SQUOTE] = ACTIONS(1062), + [anon_sym_U_SQUOTE] = ACTIONS(1062), + [anon_sym_u8_SQUOTE] = ACTIONS(1062), + [anon_sym_SQUOTE] = ACTIONS(1062), + [anon_sym_L_DQUOTE] = ACTIONS(1062), + [anon_sym_u_DQUOTE] = ACTIONS(1062), + [anon_sym_U_DQUOTE] = ACTIONS(1062), + [anon_sym_u8_DQUOTE] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1062), + [sym_true] = ACTIONS(1060), + [sym_false] = ACTIONS(1060), + [sym_null] = ACTIONS(1060), + [sym_comment] = ACTIONS(3), + }, + [227] = { + [sym_identifier] = ACTIONS(988), + [aux_sym_preproc_include_token1] = ACTIONS(988), + [aux_sym_preproc_def_token1] = ACTIONS(988), + [aux_sym_preproc_if_token1] = ACTIONS(988), + [aux_sym_preproc_ifdef_token1] = ACTIONS(988), + [aux_sym_preproc_ifdef_token2] = ACTIONS(988), + [sym_preproc_directive] = ACTIONS(988), + [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_typedef] = ACTIONS(988), + [anon_sym_extern] = ACTIONS(988), + [anon_sym___attribute__] = ACTIONS(988), + [anon_sym_LPAREN2] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(990), + [anon_sym_RBRACE] = ACTIONS(990), + [anon_sym_STAR] = ACTIONS(990), + [anon_sym_static] = ACTIONS(988), + [anon_sym_auto] = ACTIONS(988), + [anon_sym_register] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(988), + [anon_sym_const] = ACTIONS(988), + [anon_sym_volatile] = ACTIONS(988), + [anon_sym_restrict] = ACTIONS(988), + [anon_sym__Atomic] = ACTIONS(988), + [anon_sym_signed] = ACTIONS(988), + [anon_sym_unsigned] = ACTIONS(988), + [anon_sym_long] = ACTIONS(988), + [anon_sym_short] = ACTIONS(988), + [sym_primitive_type] = ACTIONS(988), + [anon_sym_enum] = ACTIONS(988), + [anon_sym_struct] = ACTIONS(988), + [anon_sym_union] = ACTIONS(988), + [anon_sym_if] = ACTIONS(988), + [anon_sym_else] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(988), + [anon_sym_case] = ACTIONS(988), + [anon_sym_default] = ACTIONS(988), + [anon_sym_while] = ACTIONS(988), + [anon_sym_do] = ACTIONS(988), + [anon_sym_for] = ACTIONS(988), + [anon_sym_return] = ACTIONS(988), + [anon_sym_break] = ACTIONS(988), + [anon_sym_continue] = ACTIONS(988), + [anon_sym_goto] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(990), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(990), + [anon_sym_DASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_sizeof] = ACTIONS(988), + [sym_number_literal] = ACTIONS(990), + [anon_sym_L_SQUOTE] = ACTIONS(990), + [anon_sym_u_SQUOTE] = ACTIONS(990), + [anon_sym_U_SQUOTE] = ACTIONS(990), + [anon_sym_u8_SQUOTE] = ACTIONS(990), + [anon_sym_SQUOTE] = ACTIONS(990), + [anon_sym_L_DQUOTE] = ACTIONS(990), + [anon_sym_u_DQUOTE] = ACTIONS(990), + [anon_sym_U_DQUOTE] = ACTIONS(990), + [anon_sym_u8_DQUOTE] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym_true] = ACTIONS(988), + [sym_false] = ACTIONS(988), + [sym_null] = ACTIONS(988), + [sym_comment] = ACTIONS(3), + }, + [228] = { + [sym_identifier] = ACTIONS(1068), + [aux_sym_preproc_include_token1] = ACTIONS(1068), + [aux_sym_preproc_def_token1] = ACTIONS(1068), + [aux_sym_preproc_if_token1] = ACTIONS(1068), + [aux_sym_preproc_if_token2] = ACTIONS(1068), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1068), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1068), + [sym_preproc_directive] = ACTIONS(1068), + [anon_sym_SEMI] = ACTIONS(1070), + [anon_sym_typedef] = ACTIONS(1068), + [anon_sym_extern] = ACTIONS(1068), + [anon_sym___attribute__] = ACTIONS(1068), + [anon_sym_LPAREN2] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(1070), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_auto] = ACTIONS(1068), + [anon_sym_register] = ACTIONS(1068), + [anon_sym_inline] = ACTIONS(1068), + [anon_sym_const] = ACTIONS(1068), + [anon_sym_volatile] = ACTIONS(1068), + [anon_sym_restrict] = ACTIONS(1068), + [anon_sym__Atomic] = ACTIONS(1068), + [anon_sym_signed] = ACTIONS(1068), + [anon_sym_unsigned] = ACTIONS(1068), + [anon_sym_long] = ACTIONS(1068), + [anon_sym_short] = ACTIONS(1068), + [sym_primitive_type] = ACTIONS(1068), + [anon_sym_enum] = ACTIONS(1068), + [anon_sym_struct] = ACTIONS(1068), + [anon_sym_union] = ACTIONS(1068), + [anon_sym_if] = ACTIONS(1068), + [anon_sym_else] = ACTIONS(1068), + [anon_sym_switch] = ACTIONS(1068), + [anon_sym_case] = ACTIONS(1068), + [anon_sym_default] = ACTIONS(1068), + [anon_sym_while] = ACTIONS(1068), + [anon_sym_do] = ACTIONS(1068), + [anon_sym_for] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1068), + [anon_sym_break] = ACTIONS(1068), + [anon_sym_continue] = ACTIONS(1068), + [anon_sym_goto] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1070), + [anon_sym_BANG] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_PLUS_PLUS] = ACTIONS(1070), + [anon_sym_sizeof] = ACTIONS(1068), + [sym_number_literal] = ACTIONS(1070), + [anon_sym_L_SQUOTE] = ACTIONS(1070), + [anon_sym_u_SQUOTE] = ACTIONS(1070), + [anon_sym_U_SQUOTE] = ACTIONS(1070), + [anon_sym_u8_SQUOTE] = ACTIONS(1070), + [anon_sym_SQUOTE] = ACTIONS(1070), + [anon_sym_L_DQUOTE] = ACTIONS(1070), + [anon_sym_u_DQUOTE] = ACTIONS(1070), + [anon_sym_U_DQUOTE] = ACTIONS(1070), + [anon_sym_u8_DQUOTE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym_true] = ACTIONS(1068), + [sym_false] = ACTIONS(1068), + [sym_null] = ACTIONS(1068), + [sym_comment] = ACTIONS(3), + }, + [229] = { + [sym_identifier] = ACTIONS(1024), + [aux_sym_preproc_include_token1] = ACTIONS(1024), + [aux_sym_preproc_def_token1] = ACTIONS(1024), + [aux_sym_preproc_if_token1] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1024), + [sym_preproc_directive] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_typedef] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1024), + [anon_sym___attribute__] = ACTIONS(1024), + [anon_sym_LPAREN2] = ACTIONS(1026), + [anon_sym_LBRACE] = ACTIONS(1026), + [anon_sym_RBRACE] = ACTIONS(1026), + [anon_sym_STAR] = ACTIONS(1026), + [anon_sym_static] = ACTIONS(1024), + [anon_sym_auto] = ACTIONS(1024), + [anon_sym_register] = ACTIONS(1024), + [anon_sym_inline] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_volatile] = ACTIONS(1024), + [anon_sym_restrict] = ACTIONS(1024), + [anon_sym__Atomic] = ACTIONS(1024), + [anon_sym_signed] = ACTIONS(1024), + [anon_sym_unsigned] = ACTIONS(1024), + [anon_sym_long] = ACTIONS(1024), + [anon_sym_short] = ACTIONS(1024), + [sym_primitive_type] = ACTIONS(1024), + [anon_sym_enum] = ACTIONS(1024), + [anon_sym_struct] = ACTIONS(1024), + [anon_sym_union] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_else] = ACTIONS(1024), + [anon_sym_switch] = ACTIONS(1024), + [anon_sym_case] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_goto] = ACTIONS(1024), + [anon_sym_AMP] = ACTIONS(1026), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_TILDE] = ACTIONS(1026), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_sizeof] = ACTIONS(1024), + [sym_number_literal] = ACTIONS(1026), + [anon_sym_L_SQUOTE] = ACTIONS(1026), + [anon_sym_u_SQUOTE] = ACTIONS(1026), + [anon_sym_U_SQUOTE] = ACTIONS(1026), + [anon_sym_u8_SQUOTE] = ACTIONS(1026), + [anon_sym_SQUOTE] = ACTIONS(1026), + [anon_sym_L_DQUOTE] = ACTIONS(1026), + [anon_sym_u_DQUOTE] = ACTIONS(1026), + [anon_sym_U_DQUOTE] = ACTIONS(1026), + [anon_sym_u8_DQUOTE] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(1026), + [sym_true] = ACTIONS(1024), + [sym_false] = ACTIONS(1024), + [sym_null] = ACTIONS(1024), + [sym_comment] = ACTIONS(3), + }, + [230] = { + [sym_identifier] = ACTIONS(984), + [aux_sym_preproc_include_token1] = ACTIONS(984), + [aux_sym_preproc_def_token1] = ACTIONS(984), + [aux_sym_preproc_if_token1] = ACTIONS(984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(984), + [sym_preproc_directive] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_typedef] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym___attribute__] = ACTIONS(984), + [anon_sym_LPAREN2] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_static] = ACTIONS(984), + [anon_sym_auto] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_inline] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [anon_sym_volatile] = ACTIONS(984), + [anon_sym_restrict] = ACTIONS(984), + [anon_sym__Atomic] = ACTIONS(984), + [anon_sym_signed] = ACTIONS(984), + [anon_sym_unsigned] = ACTIONS(984), + [anon_sym_long] = ACTIONS(984), + [anon_sym_short] = ACTIONS(984), + [sym_primitive_type] = ACTIONS(984), + [anon_sym_enum] = ACTIONS(984), + [anon_sym_struct] = ACTIONS(984), + [anon_sym_union] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_switch] = ACTIONS(984), + [anon_sym_case] = ACTIONS(984), + [anon_sym_default] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_goto] = ACTIONS(984), + [anon_sym_AMP] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_TILDE] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym_PLUS_PLUS] = ACTIONS(986), + [anon_sym_sizeof] = ACTIONS(984), + [sym_number_literal] = ACTIONS(986), + [anon_sym_L_SQUOTE] = ACTIONS(986), + [anon_sym_u_SQUOTE] = ACTIONS(986), + [anon_sym_U_SQUOTE] = ACTIONS(986), + [anon_sym_u8_SQUOTE] = ACTIONS(986), + [anon_sym_SQUOTE] = ACTIONS(986), + [anon_sym_L_DQUOTE] = ACTIONS(986), + [anon_sym_u_DQUOTE] = ACTIONS(986), + [anon_sym_U_DQUOTE] = ACTIONS(986), + [anon_sym_u8_DQUOTE] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym_true] = ACTIONS(984), + [sym_false] = ACTIONS(984), + [sym_null] = ACTIONS(984), + [sym_comment] = ACTIONS(3), + }, + [231] = { + [sym_identifier] = ACTIONS(1000), + [aux_sym_preproc_include_token1] = ACTIONS(1000), + [aux_sym_preproc_def_token1] = ACTIONS(1000), + [aux_sym_preproc_if_token1] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), + [sym_preproc_directive] = ACTIONS(1000), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_typedef] = ACTIONS(1000), + [anon_sym_extern] = ACTIONS(1000), + [anon_sym___attribute__] = ACTIONS(1000), + [anon_sym_LPAREN2] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1002), + [anon_sym_static] = ACTIONS(1000), + [anon_sym_auto] = ACTIONS(1000), + [anon_sym_register] = ACTIONS(1000), + [anon_sym_inline] = ACTIONS(1000), + [anon_sym_const] = ACTIONS(1000), + [anon_sym_volatile] = ACTIONS(1000), + [anon_sym_restrict] = ACTIONS(1000), + [anon_sym__Atomic] = ACTIONS(1000), + [anon_sym_signed] = ACTIONS(1000), + [anon_sym_unsigned] = ACTIONS(1000), + [anon_sym_long] = ACTIONS(1000), + [anon_sym_short] = ACTIONS(1000), + [sym_primitive_type] = ACTIONS(1000), + [anon_sym_enum] = ACTIONS(1000), + [anon_sym_struct] = ACTIONS(1000), + [anon_sym_union] = ACTIONS(1000), + [anon_sym_if] = ACTIONS(1000), + [anon_sym_else] = ACTIONS(1000), + [anon_sym_switch] = ACTIONS(1000), + [anon_sym_case] = ACTIONS(1000), + [anon_sym_default] = ACTIONS(1000), + [anon_sym_while] = ACTIONS(1000), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_for] = ACTIONS(1000), + [anon_sym_return] = ACTIONS(1000), + [anon_sym_break] = ACTIONS(1000), + [anon_sym_continue] = ACTIONS(1000), + [anon_sym_goto] = ACTIONS(1000), + [anon_sym_AMP] = ACTIONS(1002), + [anon_sym_BANG] = ACTIONS(1002), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1000), + [anon_sym_PLUS] = ACTIONS(1000), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_sizeof] = ACTIONS(1000), + [sym_number_literal] = ACTIONS(1002), + [anon_sym_L_SQUOTE] = ACTIONS(1002), + [anon_sym_u_SQUOTE] = ACTIONS(1002), + [anon_sym_U_SQUOTE] = ACTIONS(1002), + [anon_sym_u8_SQUOTE] = ACTIONS(1002), + [anon_sym_SQUOTE] = ACTIONS(1002), + [anon_sym_L_DQUOTE] = ACTIONS(1002), + [anon_sym_u_DQUOTE] = ACTIONS(1002), + [anon_sym_U_DQUOTE] = ACTIONS(1002), + [anon_sym_u8_DQUOTE] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym_true] = ACTIONS(1000), + [sym_false] = ACTIONS(1000), + [sym_null] = ACTIONS(1000), + [sym_comment] = ACTIONS(3), + }, + [232] = { + [ts_builtin_sym_end] = ACTIONS(1046), + [sym_identifier] = ACTIONS(1044), + [aux_sym_preproc_include_token1] = ACTIONS(1044), + [aux_sym_preproc_def_token1] = ACTIONS(1044), + [aux_sym_preproc_if_token1] = ACTIONS(1044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1044), + [sym_preproc_directive] = ACTIONS(1044), + [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_typedef] = ACTIONS(1044), + [anon_sym_extern] = ACTIONS(1044), + [anon_sym___attribute__] = ACTIONS(1044), + [anon_sym_LPAREN2] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_STAR] = ACTIONS(1046), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_auto] = ACTIONS(1044), + [anon_sym_register] = ACTIONS(1044), + [anon_sym_inline] = ACTIONS(1044), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_volatile] = ACTIONS(1044), + [anon_sym_restrict] = ACTIONS(1044), + [anon_sym__Atomic] = ACTIONS(1044), + [anon_sym_signed] = ACTIONS(1044), + [anon_sym_unsigned] = ACTIONS(1044), + [anon_sym_long] = ACTIONS(1044), + [anon_sym_short] = ACTIONS(1044), + [sym_primitive_type] = ACTIONS(1044), + [anon_sym_enum] = ACTIONS(1044), + [anon_sym_struct] = ACTIONS(1044), + [anon_sym_union] = ACTIONS(1044), + [anon_sym_if] = ACTIONS(1044), + [anon_sym_else] = ACTIONS(1044), + [anon_sym_switch] = ACTIONS(1044), + [anon_sym_case] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1044), + [anon_sym_while] = ACTIONS(1044), + [anon_sym_do] = ACTIONS(1044), + [anon_sym_for] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1044), + [anon_sym_break] = ACTIONS(1044), + [anon_sym_continue] = ACTIONS(1044), + [anon_sym_goto] = ACTIONS(1044), + [anon_sym_AMP] = ACTIONS(1046), + [anon_sym_BANG] = ACTIONS(1046), + [anon_sym_TILDE] = ACTIONS(1046), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_DASH_DASH] = ACTIONS(1046), + [anon_sym_PLUS_PLUS] = ACTIONS(1046), + [anon_sym_sizeof] = ACTIONS(1044), + [sym_number_literal] = ACTIONS(1046), + [anon_sym_L_SQUOTE] = ACTIONS(1046), + [anon_sym_u_SQUOTE] = ACTIONS(1046), + [anon_sym_U_SQUOTE] = ACTIONS(1046), + [anon_sym_u8_SQUOTE] = ACTIONS(1046), + [anon_sym_SQUOTE] = ACTIONS(1046), + [anon_sym_L_DQUOTE] = ACTIONS(1046), + [anon_sym_u_DQUOTE] = ACTIONS(1046), + [anon_sym_U_DQUOTE] = ACTIONS(1046), + [anon_sym_u8_DQUOTE] = ACTIONS(1046), + [anon_sym_DQUOTE] = ACTIONS(1046), + [sym_true] = ACTIONS(1044), + [sym_false] = ACTIONS(1044), + [sym_null] = ACTIONS(1044), + [sym_comment] = ACTIONS(3), + }, + [233] = { + [sym_identifier] = ACTIONS(1072), + [aux_sym_preproc_include_token1] = ACTIONS(1072), + [aux_sym_preproc_def_token1] = ACTIONS(1072), + [aux_sym_preproc_if_token1] = ACTIONS(1072), + [aux_sym_preproc_if_token2] = ACTIONS(1072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1072), + [sym_preproc_directive] = ACTIONS(1072), + [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_typedef] = ACTIONS(1072), + [anon_sym_extern] = ACTIONS(1072), + [anon_sym___attribute__] = ACTIONS(1072), + [anon_sym_LPAREN2] = ACTIONS(1074), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_STAR] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1072), + [anon_sym_auto] = ACTIONS(1072), + [anon_sym_register] = ACTIONS(1072), + [anon_sym_inline] = ACTIONS(1072), + [anon_sym_const] = ACTIONS(1072), + [anon_sym_volatile] = ACTIONS(1072), + [anon_sym_restrict] = ACTIONS(1072), + [anon_sym__Atomic] = ACTIONS(1072), + [anon_sym_signed] = ACTIONS(1072), + [anon_sym_unsigned] = ACTIONS(1072), + [anon_sym_long] = ACTIONS(1072), + [anon_sym_short] = ACTIONS(1072), + [sym_primitive_type] = ACTIONS(1072), + [anon_sym_enum] = ACTIONS(1072), + [anon_sym_struct] = ACTIONS(1072), + [anon_sym_union] = ACTIONS(1072), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_else] = ACTIONS(1192), + [anon_sym_switch] = ACTIONS(1072), + [anon_sym_case] = ACTIONS(1072), + [anon_sym_default] = ACTIONS(1072), + [anon_sym_while] = ACTIONS(1072), + [anon_sym_do] = ACTIONS(1072), + [anon_sym_for] = ACTIONS(1072), + [anon_sym_return] = ACTIONS(1072), + [anon_sym_break] = ACTIONS(1072), + [anon_sym_continue] = ACTIONS(1072), + [anon_sym_goto] = ACTIONS(1072), + [anon_sym_AMP] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_DASH] = ACTIONS(1072), + [anon_sym_PLUS] = ACTIONS(1072), + [anon_sym_DASH_DASH] = ACTIONS(1074), + [anon_sym_PLUS_PLUS] = ACTIONS(1074), + [anon_sym_sizeof] = ACTIONS(1072), + [sym_number_literal] = ACTIONS(1074), + [anon_sym_L_SQUOTE] = ACTIONS(1074), + [anon_sym_u_SQUOTE] = ACTIONS(1074), + [anon_sym_U_SQUOTE] = ACTIONS(1074), + [anon_sym_u8_SQUOTE] = ACTIONS(1074), + [anon_sym_SQUOTE] = ACTIONS(1074), + [anon_sym_L_DQUOTE] = ACTIONS(1074), + [anon_sym_u_DQUOTE] = ACTIONS(1074), + [anon_sym_U_DQUOTE] = ACTIONS(1074), + [anon_sym_u8_DQUOTE] = ACTIONS(1074), + [anon_sym_DQUOTE] = ACTIONS(1074), + [sym_true] = ACTIONS(1072), + [sym_false] = ACTIONS(1072), + [sym_null] = ACTIONS(1072), + [sym_comment] = ACTIONS(3), + }, + [234] = { + [sym_identifier] = ACTIONS(964), + [aux_sym_preproc_include_token1] = ACTIONS(964), + [aux_sym_preproc_def_token1] = ACTIONS(964), + [aux_sym_preproc_if_token1] = ACTIONS(964), + [aux_sym_preproc_if_token2] = ACTIONS(964), + [aux_sym_preproc_ifdef_token1] = ACTIONS(964), + [aux_sym_preproc_ifdef_token2] = ACTIONS(964), + [sym_preproc_directive] = ACTIONS(964), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_typedef] = ACTIONS(964), + [anon_sym_extern] = ACTIONS(964), + [anon_sym___attribute__] = ACTIONS(964), + [anon_sym_LPAREN2] = ACTIONS(966), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_static] = ACTIONS(964), + [anon_sym_auto] = ACTIONS(964), + [anon_sym_register] = ACTIONS(964), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_const] = ACTIONS(964), + [anon_sym_volatile] = ACTIONS(964), + [anon_sym_restrict] = ACTIONS(964), + [anon_sym__Atomic] = ACTIONS(964), + [anon_sym_signed] = ACTIONS(964), + [anon_sym_unsigned] = ACTIONS(964), + [anon_sym_long] = ACTIONS(964), + [anon_sym_short] = ACTIONS(964), + [sym_primitive_type] = ACTIONS(964), + [anon_sym_enum] = ACTIONS(964), + [anon_sym_struct] = ACTIONS(964), + [anon_sym_union] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_else] = ACTIONS(964), + [anon_sym_switch] = ACTIONS(964), + [anon_sym_case] = ACTIONS(964), + [anon_sym_default] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_do] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_goto] = ACTIONS(964), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_sizeof] = ACTIONS(964), + [sym_number_literal] = ACTIONS(966), + [anon_sym_L_SQUOTE] = ACTIONS(966), + [anon_sym_u_SQUOTE] = ACTIONS(966), + [anon_sym_U_SQUOTE] = ACTIONS(966), + [anon_sym_u8_SQUOTE] = ACTIONS(966), + [anon_sym_SQUOTE] = ACTIONS(966), + [anon_sym_L_DQUOTE] = ACTIONS(966), + [anon_sym_u_DQUOTE] = ACTIONS(966), + [anon_sym_U_DQUOTE] = ACTIONS(966), + [anon_sym_u8_DQUOTE] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym_true] = ACTIONS(964), + [sym_false] = ACTIONS(964), + [sym_null] = ACTIONS(964), + [sym_comment] = ACTIONS(3), + }, + [235] = { + [ts_builtin_sym_end] = ACTIONS(1092), + [sym_identifier] = ACTIONS(1090), + [aux_sym_preproc_include_token1] = ACTIONS(1090), + [aux_sym_preproc_def_token1] = ACTIONS(1090), + [aux_sym_preproc_if_token1] = ACTIONS(1090), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1090), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1090), + [sym_preproc_directive] = ACTIONS(1090), + [anon_sym_SEMI] = ACTIONS(1092), + [anon_sym_typedef] = ACTIONS(1090), + [anon_sym_extern] = ACTIONS(1090), + [anon_sym___attribute__] = ACTIONS(1090), + [anon_sym_LPAREN2] = ACTIONS(1092), + [anon_sym_LBRACE] = ACTIONS(1092), + [anon_sym_STAR] = ACTIONS(1092), + [anon_sym_static] = ACTIONS(1090), + [anon_sym_auto] = ACTIONS(1090), + [anon_sym_register] = ACTIONS(1090), + [anon_sym_inline] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_volatile] = ACTIONS(1090), + [anon_sym_restrict] = ACTIONS(1090), + [anon_sym__Atomic] = ACTIONS(1090), + [anon_sym_signed] = ACTIONS(1090), + [anon_sym_unsigned] = ACTIONS(1090), + [anon_sym_long] = ACTIONS(1090), + [anon_sym_short] = ACTIONS(1090), + [sym_primitive_type] = ACTIONS(1090), + [anon_sym_enum] = ACTIONS(1090), + [anon_sym_struct] = ACTIONS(1090), + [anon_sym_union] = ACTIONS(1090), + [anon_sym_if] = ACTIONS(1090), + [anon_sym_else] = ACTIONS(1090), + [anon_sym_switch] = ACTIONS(1090), + [anon_sym_case] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1090), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(1090), + [anon_sym_for] = ACTIONS(1090), + [anon_sym_return] = ACTIONS(1090), + [anon_sym_break] = ACTIONS(1090), + [anon_sym_continue] = ACTIONS(1090), + [anon_sym_goto] = ACTIONS(1090), + [anon_sym_AMP] = ACTIONS(1092), + [anon_sym_BANG] = ACTIONS(1092), + [anon_sym_TILDE] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_DASH_DASH] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1092), + [anon_sym_sizeof] = ACTIONS(1090), + [sym_number_literal] = ACTIONS(1092), + [anon_sym_L_SQUOTE] = ACTIONS(1092), + [anon_sym_u_SQUOTE] = ACTIONS(1092), + [anon_sym_U_SQUOTE] = ACTIONS(1092), + [anon_sym_u8_SQUOTE] = ACTIONS(1092), + [anon_sym_SQUOTE] = ACTIONS(1092), + [anon_sym_L_DQUOTE] = ACTIONS(1092), + [anon_sym_u_DQUOTE] = ACTIONS(1092), + [anon_sym_U_DQUOTE] = ACTIONS(1092), + [anon_sym_u8_DQUOTE] = ACTIONS(1092), + [anon_sym_DQUOTE] = ACTIONS(1092), + [sym_true] = ACTIONS(1090), + [sym_false] = ACTIONS(1090), + [sym_null] = ACTIONS(1090), + [sym_comment] = ACTIONS(3), + }, + [236] = { + [sym_identifier] = ACTIONS(980), + [aux_sym_preproc_include_token1] = ACTIONS(980), + [aux_sym_preproc_def_token1] = ACTIONS(980), + [aux_sym_preproc_if_token1] = ACTIONS(980), + [aux_sym_preproc_ifdef_token1] = ACTIONS(980), + [aux_sym_preproc_ifdef_token2] = ACTIONS(980), + [sym_preproc_directive] = ACTIONS(980), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_typedef] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym___attribute__] = ACTIONS(980), + [anon_sym_LPAREN2] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_RBRACE] = ACTIONS(982), + [anon_sym_STAR] = ACTIONS(982), + [anon_sym_static] = ACTIONS(980), + [anon_sym_auto] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_inline] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [anon_sym_volatile] = ACTIONS(980), + [anon_sym_restrict] = ACTIONS(980), + [anon_sym__Atomic] = ACTIONS(980), + [anon_sym_signed] = ACTIONS(980), + [anon_sym_unsigned] = ACTIONS(980), + [anon_sym_long] = ACTIONS(980), + [anon_sym_short] = ACTIONS(980), + [sym_primitive_type] = ACTIONS(980), + [anon_sym_enum] = ACTIONS(980), + [anon_sym_struct] = ACTIONS(980), + [anon_sym_union] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_else] = ACTIONS(980), + [anon_sym_switch] = ACTIONS(980), + [anon_sym_case] = ACTIONS(980), + [anon_sym_default] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_goto] = ACTIONS(980), + [anon_sym_AMP] = ACTIONS(982), + [anon_sym_BANG] = ACTIONS(982), + [anon_sym_TILDE] = ACTIONS(982), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(982), + [anon_sym_PLUS_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(980), + [sym_number_literal] = ACTIONS(982), + [anon_sym_L_SQUOTE] = ACTIONS(982), + [anon_sym_u_SQUOTE] = ACTIONS(982), + [anon_sym_U_SQUOTE] = ACTIONS(982), + [anon_sym_u8_SQUOTE] = ACTIONS(982), + [anon_sym_SQUOTE] = ACTIONS(982), + [anon_sym_L_DQUOTE] = ACTIONS(982), + [anon_sym_u_DQUOTE] = ACTIONS(982), + [anon_sym_U_DQUOTE] = ACTIONS(982), + [anon_sym_u8_DQUOTE] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym_true] = ACTIONS(980), + [sym_false] = ACTIONS(980), + [sym_null] = ACTIONS(980), + [sym_comment] = ACTIONS(3), + }, + [237] = { + [sym_identifier] = ACTIONS(1008), + [aux_sym_preproc_include_token1] = ACTIONS(1008), + [aux_sym_preproc_def_token1] = ACTIONS(1008), + [aux_sym_preproc_if_token1] = ACTIONS(1008), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1008), + [sym_preproc_directive] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_typedef] = ACTIONS(1008), + [anon_sym_extern] = ACTIONS(1008), + [anon_sym___attribute__] = ACTIONS(1008), + [anon_sym_LPAREN2] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_static] = ACTIONS(1008), + [anon_sym_auto] = ACTIONS(1008), + [anon_sym_register] = ACTIONS(1008), + [anon_sym_inline] = ACTIONS(1008), + [anon_sym_const] = ACTIONS(1008), + [anon_sym_volatile] = ACTIONS(1008), + [anon_sym_restrict] = ACTIONS(1008), + [anon_sym__Atomic] = ACTIONS(1008), + [anon_sym_signed] = ACTIONS(1008), + [anon_sym_unsigned] = ACTIONS(1008), + [anon_sym_long] = ACTIONS(1008), + [anon_sym_short] = ACTIONS(1008), + [sym_primitive_type] = ACTIONS(1008), + [anon_sym_enum] = ACTIONS(1008), + [anon_sym_struct] = ACTIONS(1008), + [anon_sym_union] = ACTIONS(1008), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_else] = ACTIONS(1008), + [anon_sym_switch] = ACTIONS(1008), + [anon_sym_case] = ACTIONS(1008), + [anon_sym_default] = ACTIONS(1008), + [anon_sym_while] = ACTIONS(1008), + [anon_sym_do] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1008), + [anon_sym_return] = ACTIONS(1008), + [anon_sym_break] = ACTIONS(1008), + [anon_sym_continue] = ACTIONS(1008), + [anon_sym_goto] = ACTIONS(1008), + [anon_sym_AMP] = ACTIONS(1010), + [anon_sym_BANG] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_sizeof] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(1010), + [anon_sym_L_SQUOTE] = ACTIONS(1010), + [anon_sym_u_SQUOTE] = ACTIONS(1010), + [anon_sym_U_SQUOTE] = ACTIONS(1010), + [anon_sym_u8_SQUOTE] = ACTIONS(1010), + [anon_sym_SQUOTE] = ACTIONS(1010), + [anon_sym_L_DQUOTE] = ACTIONS(1010), + [anon_sym_u_DQUOTE] = ACTIONS(1010), + [anon_sym_U_DQUOTE] = ACTIONS(1010), + [anon_sym_u8_DQUOTE] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym_true] = ACTIONS(1008), + [sym_false] = ACTIONS(1008), + [sym_null] = ACTIONS(1008), + [sym_comment] = ACTIONS(3), + }, + [238] = { + [sym_identifier] = ACTIONS(1012), + [aux_sym_preproc_include_token1] = ACTIONS(1012), + [aux_sym_preproc_def_token1] = ACTIONS(1012), + [aux_sym_preproc_if_token1] = ACTIONS(1012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1012), + [sym_preproc_directive] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1014), + [anon_sym_typedef] = ACTIONS(1012), + [anon_sym_extern] = ACTIONS(1012), + [anon_sym___attribute__] = ACTIONS(1012), + [anon_sym_LPAREN2] = ACTIONS(1014), + [anon_sym_LBRACE] = ACTIONS(1014), + [anon_sym_RBRACE] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1014), + [anon_sym_static] = ACTIONS(1012), + [anon_sym_auto] = ACTIONS(1012), + [anon_sym_register] = ACTIONS(1012), + [anon_sym_inline] = ACTIONS(1012), + [anon_sym_const] = ACTIONS(1012), + [anon_sym_volatile] = ACTIONS(1012), + [anon_sym_restrict] = ACTIONS(1012), + [anon_sym__Atomic] = ACTIONS(1012), + [anon_sym_signed] = ACTIONS(1012), + [anon_sym_unsigned] = ACTIONS(1012), + [anon_sym_long] = ACTIONS(1012), + [anon_sym_short] = ACTIONS(1012), + [sym_primitive_type] = ACTIONS(1012), + [anon_sym_enum] = ACTIONS(1012), + [anon_sym_struct] = ACTIONS(1012), + [anon_sym_union] = ACTIONS(1012), + [anon_sym_if] = ACTIONS(1012), + [anon_sym_else] = ACTIONS(1012), + [anon_sym_switch] = ACTIONS(1012), + [anon_sym_case] = ACTIONS(1012), + [anon_sym_default] = ACTIONS(1012), + [anon_sym_while] = ACTIONS(1012), + [anon_sym_do] = ACTIONS(1012), + [anon_sym_for] = ACTIONS(1012), + [anon_sym_return] = ACTIONS(1012), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_continue] = ACTIONS(1012), + [anon_sym_goto] = ACTIONS(1012), + [anon_sym_AMP] = ACTIONS(1014), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_TILDE] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1012), + [anon_sym_PLUS] = ACTIONS(1012), + [anon_sym_DASH_DASH] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_sizeof] = ACTIONS(1012), + [sym_number_literal] = ACTIONS(1014), + [anon_sym_L_SQUOTE] = ACTIONS(1014), + [anon_sym_u_SQUOTE] = ACTIONS(1014), + [anon_sym_U_SQUOTE] = ACTIONS(1014), + [anon_sym_u8_SQUOTE] = ACTIONS(1014), + [anon_sym_SQUOTE] = ACTIONS(1014), + [anon_sym_L_DQUOTE] = ACTIONS(1014), + [anon_sym_u_DQUOTE] = ACTIONS(1014), + [anon_sym_U_DQUOTE] = ACTIONS(1014), + [anon_sym_u8_DQUOTE] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(1014), + [sym_true] = ACTIONS(1012), + [sym_false] = ACTIONS(1012), + [sym_null] = ACTIONS(1012), + [sym_comment] = ACTIONS(3), + }, + [239] = { + [sym_identifier] = ACTIONS(960), + [aux_sym_preproc_include_token1] = ACTIONS(960), + [aux_sym_preproc_def_token1] = ACTIONS(960), + [aux_sym_preproc_if_token1] = ACTIONS(960), + [aux_sym_preproc_ifdef_token1] = ACTIONS(960), + [aux_sym_preproc_ifdef_token2] = ACTIONS(960), + [sym_preproc_directive] = ACTIONS(960), + [anon_sym_SEMI] = ACTIONS(962), + [anon_sym_typedef] = ACTIONS(960), + [anon_sym_extern] = ACTIONS(960), + [anon_sym___attribute__] = ACTIONS(960), + [anon_sym_LPAREN2] = ACTIONS(962), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_RBRACE] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(962), + [anon_sym_static] = ACTIONS(960), + [anon_sym_auto] = ACTIONS(960), + [anon_sym_register] = ACTIONS(960), + [anon_sym_inline] = ACTIONS(960), + [anon_sym_const] = ACTIONS(960), + [anon_sym_volatile] = ACTIONS(960), + [anon_sym_restrict] = ACTIONS(960), + [anon_sym__Atomic] = ACTIONS(960), + [anon_sym_signed] = ACTIONS(960), + [anon_sym_unsigned] = ACTIONS(960), + [anon_sym_long] = ACTIONS(960), + [anon_sym_short] = ACTIONS(960), + [sym_primitive_type] = ACTIONS(960), + [anon_sym_enum] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(960), + [anon_sym_union] = ACTIONS(960), + [anon_sym_if] = ACTIONS(960), + [anon_sym_else] = ACTIONS(960), + [anon_sym_switch] = ACTIONS(960), + [anon_sym_case] = ACTIONS(960), + [anon_sym_default] = ACTIONS(960), + [anon_sym_while] = ACTIONS(960), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(960), + [anon_sym_return] = ACTIONS(960), + [anon_sym_break] = ACTIONS(960), + [anon_sym_continue] = ACTIONS(960), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(962), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(962), + [anon_sym_DASH] = ACTIONS(960), + [anon_sym_PLUS] = ACTIONS(960), + [anon_sym_DASH_DASH] = ACTIONS(962), + [anon_sym_PLUS_PLUS] = ACTIONS(962), + [anon_sym_sizeof] = ACTIONS(960), + [sym_number_literal] = ACTIONS(962), + [anon_sym_L_SQUOTE] = ACTIONS(962), + [anon_sym_u_SQUOTE] = ACTIONS(962), + [anon_sym_U_SQUOTE] = ACTIONS(962), + [anon_sym_u8_SQUOTE] = ACTIONS(962), + [anon_sym_SQUOTE] = ACTIONS(962), + [anon_sym_L_DQUOTE] = ACTIONS(962), + [anon_sym_u_DQUOTE] = ACTIONS(962), + [anon_sym_U_DQUOTE] = ACTIONS(962), + [anon_sym_u8_DQUOTE] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(962), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), + [sym_comment] = ACTIONS(3), + }, + [240] = { + [sym_identifier] = ACTIONS(1052), + [aux_sym_preproc_include_token1] = ACTIONS(1052), + [aux_sym_preproc_def_token1] = ACTIONS(1052), + [aux_sym_preproc_if_token1] = ACTIONS(1052), + [aux_sym_preproc_if_token2] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), + [sym_preproc_directive] = ACTIONS(1052), + [anon_sym_SEMI] = ACTIONS(1054), + [anon_sym_typedef] = ACTIONS(1052), + [anon_sym_extern] = ACTIONS(1052), + [anon_sym___attribute__] = ACTIONS(1052), + [anon_sym_LPAREN2] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_static] = ACTIONS(1052), + [anon_sym_auto] = ACTIONS(1052), + [anon_sym_register] = ACTIONS(1052), + [anon_sym_inline] = ACTIONS(1052), + [anon_sym_const] = ACTIONS(1052), + [anon_sym_volatile] = ACTIONS(1052), + [anon_sym_restrict] = ACTIONS(1052), + [anon_sym__Atomic] = ACTIONS(1052), + [anon_sym_signed] = ACTIONS(1052), + [anon_sym_unsigned] = ACTIONS(1052), + [anon_sym_long] = ACTIONS(1052), + [anon_sym_short] = ACTIONS(1052), + [sym_primitive_type] = ACTIONS(1052), + [anon_sym_enum] = ACTIONS(1052), + [anon_sym_struct] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1052), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_else] = ACTIONS(1052), + [anon_sym_switch] = ACTIONS(1052), + [anon_sym_case] = ACTIONS(1052), + [anon_sym_default] = ACTIONS(1052), + [anon_sym_while] = ACTIONS(1052), + [anon_sym_do] = ACTIONS(1052), + [anon_sym_for] = ACTIONS(1052), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_break] = ACTIONS(1052), + [anon_sym_continue] = ACTIONS(1052), + [anon_sym_goto] = ACTIONS(1052), + [anon_sym_AMP] = ACTIONS(1054), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_DASH_DASH] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1054), + [anon_sym_sizeof] = ACTIONS(1052), + [sym_number_literal] = ACTIONS(1054), + [anon_sym_L_SQUOTE] = ACTIONS(1054), + [anon_sym_u_SQUOTE] = ACTIONS(1054), + [anon_sym_U_SQUOTE] = ACTIONS(1054), + [anon_sym_u8_SQUOTE] = ACTIONS(1054), + [anon_sym_SQUOTE] = ACTIONS(1054), + [anon_sym_L_DQUOTE] = ACTIONS(1054), + [anon_sym_u_DQUOTE] = ACTIONS(1054), + [anon_sym_U_DQUOTE] = ACTIONS(1054), + [anon_sym_u8_DQUOTE] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym_true] = ACTIONS(1052), + [sym_false] = ACTIONS(1052), + [sym_null] = ACTIONS(1052), + [sym_comment] = ACTIONS(3), + }, + [241] = { + [sym_identifier] = ACTIONS(1036), + [aux_sym_preproc_include_token1] = ACTIONS(1036), + [aux_sym_preproc_def_token1] = ACTIONS(1036), + [aux_sym_preproc_if_token1] = ACTIONS(1036), + [aux_sym_preproc_if_token2] = ACTIONS(1036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1036), + [sym_preproc_directive] = ACTIONS(1036), + [anon_sym_SEMI] = ACTIONS(1038), + [anon_sym_typedef] = ACTIONS(1036), + [anon_sym_extern] = ACTIONS(1036), + [anon_sym___attribute__] = ACTIONS(1036), + [anon_sym_LPAREN2] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_STAR] = ACTIONS(1038), + [anon_sym_static] = ACTIONS(1036), + [anon_sym_auto] = ACTIONS(1036), + [anon_sym_register] = ACTIONS(1036), + [anon_sym_inline] = ACTIONS(1036), + [anon_sym_const] = ACTIONS(1036), + [anon_sym_volatile] = ACTIONS(1036), + [anon_sym_restrict] = ACTIONS(1036), + [anon_sym__Atomic] = ACTIONS(1036), + [anon_sym_signed] = ACTIONS(1036), + [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), + [anon_sym_if] = ACTIONS(1036), + [anon_sym_else] = ACTIONS(1036), + [anon_sym_switch] = ACTIONS(1036), + [anon_sym_case] = ACTIONS(1036), + [anon_sym_default] = ACTIONS(1036), + [anon_sym_while] = ACTIONS(1036), + [anon_sym_do] = ACTIONS(1036), + [anon_sym_for] = ACTIONS(1036), + [anon_sym_return] = ACTIONS(1036), + [anon_sym_break] = ACTIONS(1036), + [anon_sym_continue] = ACTIONS(1036), + [anon_sym_goto] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1038), + [anon_sym_BANG] = ACTIONS(1038), + [anon_sym_TILDE] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_PLUS] = ACTIONS(1036), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_sizeof] = ACTIONS(1036), + [sym_number_literal] = ACTIONS(1038), + [anon_sym_L_SQUOTE] = ACTIONS(1038), + [anon_sym_u_SQUOTE] = ACTIONS(1038), + [anon_sym_U_SQUOTE] = ACTIONS(1038), + [anon_sym_u8_SQUOTE] = ACTIONS(1038), + [anon_sym_SQUOTE] = ACTIONS(1038), + [anon_sym_L_DQUOTE] = ACTIONS(1038), + [anon_sym_u_DQUOTE] = ACTIONS(1038), + [anon_sym_U_DQUOTE] = ACTIONS(1038), + [anon_sym_u8_DQUOTE] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1038), + [sym_true] = ACTIONS(1036), + [sym_false] = ACTIONS(1036), + [sym_null] = ACTIONS(1036), + [sym_comment] = ACTIONS(3), + }, + [242] = { + [ts_builtin_sym_end] = ACTIONS(970), + [sym_identifier] = ACTIONS(968), + [aux_sym_preproc_include_token1] = ACTIONS(968), + [aux_sym_preproc_def_token1] = ACTIONS(968), + [aux_sym_preproc_if_token1] = ACTIONS(968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(968), + [sym_preproc_directive] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_typedef] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(968), + [anon_sym___attribute__] = ACTIONS(968), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_LBRACE] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(970), + [anon_sym_static] = ACTIONS(968), + [anon_sym_auto] = ACTIONS(968), + [anon_sym_register] = ACTIONS(968), + [anon_sym_inline] = ACTIONS(968), + [anon_sym_const] = ACTIONS(968), + [anon_sym_volatile] = ACTIONS(968), + [anon_sym_restrict] = ACTIONS(968), + [anon_sym__Atomic] = ACTIONS(968), + [anon_sym_signed] = ACTIONS(968), + [anon_sym_unsigned] = ACTIONS(968), + [anon_sym_long] = ACTIONS(968), + [anon_sym_short] = ACTIONS(968), + [sym_primitive_type] = ACTIONS(968), + [anon_sym_enum] = ACTIONS(968), + [anon_sym_struct] = ACTIONS(968), + [anon_sym_union] = ACTIONS(968), + [anon_sym_if] = ACTIONS(968), + [anon_sym_else] = ACTIONS(968), + [anon_sym_switch] = ACTIONS(968), + [anon_sym_case] = ACTIONS(968), + [anon_sym_default] = ACTIONS(968), + [anon_sym_while] = ACTIONS(968), + [anon_sym_do] = ACTIONS(968), + [anon_sym_for] = ACTIONS(968), + [anon_sym_return] = ACTIONS(968), + [anon_sym_break] = ACTIONS(968), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_BANG] = ACTIONS(970), + [anon_sym_TILDE] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_sizeof] = ACTIONS(968), + [sym_number_literal] = ACTIONS(970), + [anon_sym_L_SQUOTE] = ACTIONS(970), + [anon_sym_u_SQUOTE] = ACTIONS(970), + [anon_sym_U_SQUOTE] = ACTIONS(970), + [anon_sym_u8_SQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(970), + [anon_sym_L_DQUOTE] = ACTIONS(970), + [anon_sym_u_DQUOTE] = ACTIONS(970), + [anon_sym_U_DQUOTE] = ACTIONS(970), + [anon_sym_u8_DQUOTE] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(970), + [sym_true] = ACTIONS(968), + [sym_false] = ACTIONS(968), + [sym_null] = ACTIONS(968), + [sym_comment] = ACTIONS(3), + }, + [243] = { + [ts_builtin_sym_end] = ACTIONS(994), + [sym_identifier] = ACTIONS(992), + [aux_sym_preproc_include_token1] = ACTIONS(992), + [aux_sym_preproc_def_token1] = ACTIONS(992), + [aux_sym_preproc_if_token1] = ACTIONS(992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(992), + [sym_preproc_directive] = ACTIONS(992), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_typedef] = ACTIONS(992), + [anon_sym_extern] = ACTIONS(992), + [anon_sym___attribute__] = ACTIONS(992), + [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_STAR] = ACTIONS(994), + [anon_sym_static] = ACTIONS(992), + [anon_sym_auto] = ACTIONS(992), + [anon_sym_register] = ACTIONS(992), + [anon_sym_inline] = ACTIONS(992), + [anon_sym_const] = ACTIONS(992), + [anon_sym_volatile] = ACTIONS(992), + [anon_sym_restrict] = ACTIONS(992), + [anon_sym__Atomic] = ACTIONS(992), + [anon_sym_signed] = ACTIONS(992), + [anon_sym_unsigned] = ACTIONS(992), + [anon_sym_long] = ACTIONS(992), + [anon_sym_short] = ACTIONS(992), + [sym_primitive_type] = ACTIONS(992), + [anon_sym_enum] = ACTIONS(992), + [anon_sym_struct] = ACTIONS(992), + [anon_sym_union] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_else] = ACTIONS(992), + [anon_sym_switch] = ACTIONS(992), + [anon_sym_case] = ACTIONS(992), + [anon_sym_default] = ACTIONS(992), + [anon_sym_while] = ACTIONS(992), + [anon_sym_do] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_return] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_goto] = ACTIONS(992), + [anon_sym_AMP] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_sizeof] = ACTIONS(992), + [sym_number_literal] = ACTIONS(994), + [anon_sym_L_SQUOTE] = ACTIONS(994), + [anon_sym_u_SQUOTE] = ACTIONS(994), + [anon_sym_U_SQUOTE] = ACTIONS(994), + [anon_sym_u8_SQUOTE] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(994), + [anon_sym_L_DQUOTE] = ACTIONS(994), + [anon_sym_u_DQUOTE] = ACTIONS(994), + [anon_sym_U_DQUOTE] = ACTIONS(994), + [anon_sym_u8_DQUOTE] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(994), + [sym_true] = ACTIONS(992), + [sym_false] = ACTIONS(992), + [sym_null] = ACTIONS(992), + [sym_comment] = ACTIONS(3), + }, + [244] = { + [sym_identifier] = ACTIONS(1016), + [aux_sym_preproc_include_token1] = ACTIONS(1016), + [aux_sym_preproc_def_token1] = ACTIONS(1016), + [aux_sym_preproc_if_token1] = ACTIONS(1016), + [aux_sym_preproc_if_token2] = ACTIONS(1016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1016), + [sym_preproc_directive] = ACTIONS(1016), + [anon_sym_SEMI] = ACTIONS(1018), + [anon_sym_typedef] = ACTIONS(1016), + [anon_sym_extern] = ACTIONS(1016), + [anon_sym___attribute__] = ACTIONS(1016), + [anon_sym_LPAREN2] = ACTIONS(1018), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_STAR] = ACTIONS(1018), + [anon_sym_static] = ACTIONS(1016), + [anon_sym_auto] = ACTIONS(1016), + [anon_sym_register] = ACTIONS(1016), + [anon_sym_inline] = ACTIONS(1016), + [anon_sym_const] = ACTIONS(1016), + [anon_sym_volatile] = ACTIONS(1016), + [anon_sym_restrict] = ACTIONS(1016), + [anon_sym__Atomic] = ACTIONS(1016), + [anon_sym_signed] = ACTIONS(1016), + [anon_sym_unsigned] = ACTIONS(1016), + [anon_sym_long] = ACTIONS(1016), + [anon_sym_short] = ACTIONS(1016), + [sym_primitive_type] = ACTIONS(1016), + [anon_sym_enum] = ACTIONS(1016), + [anon_sym_struct] = ACTIONS(1016), + [anon_sym_union] = ACTIONS(1016), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_else] = ACTIONS(1016), + [anon_sym_switch] = ACTIONS(1016), + [anon_sym_case] = ACTIONS(1016), + [anon_sym_default] = ACTIONS(1016), + [anon_sym_while] = ACTIONS(1016), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_for] = ACTIONS(1016), + [anon_sym_return] = ACTIONS(1016), + [anon_sym_break] = ACTIONS(1016), + [anon_sym_continue] = ACTIONS(1016), + [anon_sym_goto] = ACTIONS(1016), + [anon_sym_AMP] = ACTIONS(1018), + [anon_sym_BANG] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1016), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), + [anon_sym_PLUS_PLUS] = ACTIONS(1018), + [anon_sym_sizeof] = ACTIONS(1016), + [sym_number_literal] = ACTIONS(1018), + [anon_sym_L_SQUOTE] = ACTIONS(1018), + [anon_sym_u_SQUOTE] = ACTIONS(1018), + [anon_sym_U_SQUOTE] = ACTIONS(1018), + [anon_sym_u8_SQUOTE] = ACTIONS(1018), + [anon_sym_SQUOTE] = ACTIONS(1018), + [anon_sym_L_DQUOTE] = ACTIONS(1018), + [anon_sym_u_DQUOTE] = ACTIONS(1018), + [anon_sym_U_DQUOTE] = ACTIONS(1018), + [anon_sym_u8_DQUOTE] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(1018), + [sym_true] = ACTIONS(1016), + [sym_false] = ACTIONS(1016), + [sym_null] = ACTIONS(1016), + [sym_comment] = ACTIONS(3), + }, + [245] = { + [sym_identifier] = ACTIONS(976), + [aux_sym_preproc_include_token1] = ACTIONS(976), + [aux_sym_preproc_def_token1] = ACTIONS(976), + [aux_sym_preproc_if_token1] = ACTIONS(976), + [aux_sym_preproc_if_token2] = ACTIONS(976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(976), + [sym_preproc_directive] = ACTIONS(976), + [anon_sym_SEMI] = ACTIONS(978), + [anon_sym_typedef] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(976), + [anon_sym___attribute__] = ACTIONS(976), + [anon_sym_LPAREN2] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(978), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_static] = ACTIONS(976), + [anon_sym_auto] = ACTIONS(976), + [anon_sym_register] = ACTIONS(976), + [anon_sym_inline] = ACTIONS(976), + [anon_sym_const] = ACTIONS(976), + [anon_sym_volatile] = ACTIONS(976), + [anon_sym_restrict] = ACTIONS(976), + [anon_sym__Atomic] = ACTIONS(976), + [anon_sym_signed] = ACTIONS(976), + [anon_sym_unsigned] = ACTIONS(976), + [anon_sym_long] = ACTIONS(976), + [anon_sym_short] = ACTIONS(976), + [sym_primitive_type] = ACTIONS(976), + [anon_sym_enum] = ACTIONS(976), + [anon_sym_struct] = ACTIONS(976), + [anon_sym_union] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_else] = ACTIONS(976), + [anon_sym_switch] = ACTIONS(976), + [anon_sym_case] = ACTIONS(976), + [anon_sym_default] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_do] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_goto] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_PLUS_PLUS] = ACTIONS(978), + [anon_sym_sizeof] = ACTIONS(976), + [sym_number_literal] = ACTIONS(978), + [anon_sym_L_SQUOTE] = ACTIONS(978), + [anon_sym_u_SQUOTE] = ACTIONS(978), + [anon_sym_U_SQUOTE] = ACTIONS(978), + [anon_sym_u8_SQUOTE] = ACTIONS(978), + [anon_sym_SQUOTE] = ACTIONS(978), + [anon_sym_L_DQUOTE] = ACTIONS(978), + [anon_sym_u_DQUOTE] = ACTIONS(978), + [anon_sym_U_DQUOTE] = ACTIONS(978), + [anon_sym_u8_DQUOTE] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym_true] = ACTIONS(976), + [sym_false] = ACTIONS(976), + [sym_null] = ACTIONS(976), + [sym_comment] = ACTIONS(3), + }, + [246] = { + [sym_identifier] = ACTIONS(972), + [aux_sym_preproc_include_token1] = ACTIONS(972), + [aux_sym_preproc_def_token1] = ACTIONS(972), + [aux_sym_preproc_if_token1] = ACTIONS(972), + [aux_sym_preproc_if_token2] = ACTIONS(972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(972), + [sym_preproc_directive] = ACTIONS(972), + [anon_sym_SEMI] = ACTIONS(974), + [anon_sym_typedef] = ACTIONS(972), + [anon_sym_extern] = ACTIONS(972), + [anon_sym___attribute__] = ACTIONS(972), + [anon_sym_LPAREN2] = ACTIONS(974), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_STAR] = ACTIONS(974), + [anon_sym_static] = ACTIONS(972), + [anon_sym_auto] = ACTIONS(972), + [anon_sym_register] = ACTIONS(972), + [anon_sym_inline] = ACTIONS(972), + [anon_sym_const] = ACTIONS(972), + [anon_sym_volatile] = ACTIONS(972), + [anon_sym_restrict] = ACTIONS(972), + [anon_sym__Atomic] = ACTIONS(972), + [anon_sym_signed] = ACTIONS(972), + [anon_sym_unsigned] = ACTIONS(972), + [anon_sym_long] = ACTIONS(972), + [anon_sym_short] = ACTIONS(972), + [sym_primitive_type] = ACTIONS(972), + [anon_sym_enum] = ACTIONS(972), + [anon_sym_struct] = ACTIONS(972), + [anon_sym_union] = ACTIONS(972), + [anon_sym_if] = ACTIONS(972), + [anon_sym_else] = ACTIONS(972), + [anon_sym_switch] = ACTIONS(972), + [anon_sym_case] = ACTIONS(972), + [anon_sym_default] = ACTIONS(972), + [anon_sym_while] = ACTIONS(972), + [anon_sym_do] = ACTIONS(972), + [anon_sym_for] = ACTIONS(972), + [anon_sym_return] = ACTIONS(972), + [anon_sym_break] = ACTIONS(972), + [anon_sym_continue] = ACTIONS(972), + [anon_sym_goto] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(974), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(974), + [anon_sym_sizeof] = ACTIONS(972), + [sym_number_literal] = ACTIONS(974), + [anon_sym_L_SQUOTE] = ACTIONS(974), + [anon_sym_u_SQUOTE] = ACTIONS(974), + [anon_sym_U_SQUOTE] = ACTIONS(974), + [anon_sym_u8_SQUOTE] = ACTIONS(974), + [anon_sym_SQUOTE] = ACTIONS(974), + [anon_sym_L_DQUOTE] = ACTIONS(974), + [anon_sym_u_DQUOTE] = ACTIONS(974), + [anon_sym_U_DQUOTE] = ACTIONS(974), + [anon_sym_u8_DQUOTE] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(974), + [sym_true] = ACTIONS(972), + [sym_false] = ACTIONS(972), + [sym_null] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + }, + [247] = { + [sym_type_qualifier] = STATE(721), + [sym__type_specifier] = STATE(761), + [sym_sized_type_specifier] = STATE(761), + [sym_enum_specifier] = STATE(761), + [sym_struct_specifier] = STATE(761), + [sym_union_specifier] = STATE(761), + [sym__expression] = STATE(579), + [sym_comma_expression] = STATE(1039), + [sym_conditional_expression] = STATE(579), + [sym_assignment_expression] = STATE(579), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(579), + [sym_binary_expression] = STATE(579), + [sym_update_expression] = STATE(579), + [sym_cast_expression] = STATE(579), + [sym_type_descriptor] = STATE(1079), + [sym_sizeof_expression] = STATE(579), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(579), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(579), + [sym_concatenated_string] = STATE(579), + [sym_string_literal] = STATE(380), + [sym_macro_type_specifier] = STATE(761), + [aux_sym_type_definition_repeat1] = STATE(721), + [aux_sym_sized_type_specifier_repeat1] = STATE(764), + [sym_identifier] = ACTIONS(1182), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(1184), + [anon_sym_unsigned] = ACTIONS(1184), + [anon_sym_long] = ACTIONS(1184), + [anon_sym_short] = ACTIONS(1184), + [sym_primitive_type] = ACTIONS(1186), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(1188), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(1190), + [sym_false] = ACTIONS(1190), + [sym_null] = ACTIONS(1190), + [sym_comment] = ACTIONS(3), + }, + [248] = { + [ts_builtin_sym_end] = ACTIONS(1066), + [sym_identifier] = ACTIONS(1064), + [aux_sym_preproc_include_token1] = ACTIONS(1064), + [aux_sym_preproc_def_token1] = ACTIONS(1064), + [aux_sym_preproc_if_token1] = ACTIONS(1064), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1064), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1064), + [sym_preproc_directive] = ACTIONS(1064), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_typedef] = ACTIONS(1064), + [anon_sym_extern] = ACTIONS(1064), + [anon_sym___attribute__] = ACTIONS(1064), + [anon_sym_LPAREN2] = ACTIONS(1066), + [anon_sym_LBRACE] = ACTIONS(1066), + [anon_sym_STAR] = ACTIONS(1066), + [anon_sym_static] = ACTIONS(1064), + [anon_sym_auto] = ACTIONS(1064), + [anon_sym_register] = ACTIONS(1064), + [anon_sym_inline] = ACTIONS(1064), + [anon_sym_const] = ACTIONS(1064), + [anon_sym_volatile] = ACTIONS(1064), + [anon_sym_restrict] = ACTIONS(1064), + [anon_sym__Atomic] = ACTIONS(1064), + [anon_sym_signed] = ACTIONS(1064), + [anon_sym_unsigned] = ACTIONS(1064), + [anon_sym_long] = ACTIONS(1064), + [anon_sym_short] = ACTIONS(1064), + [sym_primitive_type] = ACTIONS(1064), + [anon_sym_enum] = ACTIONS(1064), + [anon_sym_struct] = ACTIONS(1064), + [anon_sym_union] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(1064), + [anon_sym_else] = ACTIONS(1064), + [anon_sym_switch] = ACTIONS(1064), + [anon_sym_case] = ACTIONS(1064), + [anon_sym_default] = ACTIONS(1064), + [anon_sym_while] = ACTIONS(1064), + [anon_sym_do] = ACTIONS(1064), + [anon_sym_for] = ACTIONS(1064), + [anon_sym_return] = ACTIONS(1064), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1064), + [anon_sym_goto] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1064), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_sizeof] = ACTIONS(1064), + [sym_number_literal] = ACTIONS(1066), + [anon_sym_L_SQUOTE] = ACTIONS(1066), + [anon_sym_u_SQUOTE] = ACTIONS(1066), + [anon_sym_U_SQUOTE] = ACTIONS(1066), + [anon_sym_u8_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_L_DQUOTE] = ACTIONS(1066), + [anon_sym_u_DQUOTE] = ACTIONS(1066), + [anon_sym_U_DQUOTE] = ACTIONS(1066), + [anon_sym_u8_DQUOTE] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(1066), + [sym_true] = ACTIONS(1064), + [sym_false] = ACTIONS(1064), + [sym_null] = ACTIONS(1064), + [sym_comment] = ACTIONS(3), + }, + [249] = { + [ts_builtin_sym_end] = ACTIONS(1074), + [sym_identifier] = ACTIONS(1072), + [aux_sym_preproc_include_token1] = ACTIONS(1072), + [aux_sym_preproc_def_token1] = ACTIONS(1072), + [aux_sym_preproc_if_token1] = ACTIONS(1072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1072), + [sym_preproc_directive] = ACTIONS(1072), + [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_typedef] = ACTIONS(1072), + [anon_sym_extern] = ACTIONS(1072), + [anon_sym___attribute__] = ACTIONS(1072), + [anon_sym_LPAREN2] = ACTIONS(1074), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_STAR] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1072), + [anon_sym_auto] = ACTIONS(1072), + [anon_sym_register] = ACTIONS(1072), + [anon_sym_inline] = ACTIONS(1072), + [anon_sym_const] = ACTIONS(1072), + [anon_sym_volatile] = ACTIONS(1072), + [anon_sym_restrict] = ACTIONS(1072), + [anon_sym__Atomic] = ACTIONS(1072), + [anon_sym_signed] = ACTIONS(1072), + [anon_sym_unsigned] = ACTIONS(1072), + [anon_sym_long] = ACTIONS(1072), + [anon_sym_short] = ACTIONS(1072), + [sym_primitive_type] = ACTIONS(1072), + [anon_sym_enum] = ACTIONS(1072), + [anon_sym_struct] = ACTIONS(1072), + [anon_sym_union] = ACTIONS(1072), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_else] = ACTIONS(1194), + [anon_sym_switch] = ACTIONS(1072), + [anon_sym_case] = ACTIONS(1072), + [anon_sym_default] = ACTIONS(1072), + [anon_sym_while] = ACTIONS(1072), + [anon_sym_do] = ACTIONS(1072), + [anon_sym_for] = ACTIONS(1072), + [anon_sym_return] = ACTIONS(1072), + [anon_sym_break] = ACTIONS(1072), + [anon_sym_continue] = ACTIONS(1072), + [anon_sym_goto] = ACTIONS(1072), + [anon_sym_AMP] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_DASH] = ACTIONS(1072), + [anon_sym_PLUS] = ACTIONS(1072), + [anon_sym_DASH_DASH] = ACTIONS(1074), + [anon_sym_PLUS_PLUS] = ACTIONS(1074), + [anon_sym_sizeof] = ACTIONS(1072), + [sym_number_literal] = ACTIONS(1074), + [anon_sym_L_SQUOTE] = ACTIONS(1074), + [anon_sym_u_SQUOTE] = ACTIONS(1074), + [anon_sym_U_SQUOTE] = ACTIONS(1074), + [anon_sym_u8_SQUOTE] = ACTIONS(1074), + [anon_sym_SQUOTE] = ACTIONS(1074), + [anon_sym_L_DQUOTE] = ACTIONS(1074), + [anon_sym_u_DQUOTE] = ACTIONS(1074), + [anon_sym_U_DQUOTE] = ACTIONS(1074), + [anon_sym_u8_DQUOTE] = ACTIONS(1074), + [anon_sym_DQUOTE] = ACTIONS(1074), + [sym_true] = ACTIONS(1072), + [sym_false] = ACTIONS(1072), + [sym_null] = ACTIONS(1072), + [sym_comment] = ACTIONS(3), + }, + [250] = { + [sym_type_qualifier] = STATE(721), + [sym__type_specifier] = STATE(761), + [sym_sized_type_specifier] = STATE(761), + [sym_enum_specifier] = STATE(761), + [sym_struct_specifier] = STATE(761), + [sym_union_specifier] = STATE(761), + [sym__expression] = STATE(579), + [sym_comma_expression] = STATE(1039), + [sym_conditional_expression] = STATE(579), + [sym_assignment_expression] = STATE(579), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(579), + [sym_binary_expression] = STATE(579), + [sym_update_expression] = STATE(579), + [sym_cast_expression] = STATE(579), + [sym_type_descriptor] = STATE(1114), + [sym_sizeof_expression] = STATE(579), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(579), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(579), + [sym_concatenated_string] = STATE(579), + [sym_string_literal] = STATE(380), + [sym_macro_type_specifier] = STATE(761), + [aux_sym_type_definition_repeat1] = STATE(721), + [aux_sym_sized_type_specifier_repeat1] = STATE(764), + [sym_identifier] = ACTIONS(1182), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(1184), + [anon_sym_unsigned] = ACTIONS(1184), + [anon_sym_long] = ACTIONS(1184), + [anon_sym_short] = ACTIONS(1184), + [sym_primitive_type] = ACTIONS(1186), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(1188), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(1190), + [sym_false] = ACTIONS(1190), + [sym_null] = ACTIONS(1190), + [sym_comment] = ACTIONS(3), + }, + [251] = { + [sym_identifier] = ACTIONS(968), + [aux_sym_preproc_include_token1] = ACTIONS(968), + [aux_sym_preproc_def_token1] = ACTIONS(968), + [aux_sym_preproc_if_token1] = ACTIONS(968), + [aux_sym_preproc_if_token2] = ACTIONS(968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(968), + [sym_preproc_directive] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_typedef] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(968), + [anon_sym___attribute__] = ACTIONS(968), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_LBRACE] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(970), + [anon_sym_static] = ACTIONS(968), + [anon_sym_auto] = ACTIONS(968), + [anon_sym_register] = ACTIONS(968), + [anon_sym_inline] = ACTIONS(968), + [anon_sym_const] = ACTIONS(968), + [anon_sym_volatile] = ACTIONS(968), + [anon_sym_restrict] = ACTIONS(968), + [anon_sym__Atomic] = ACTIONS(968), + [anon_sym_signed] = ACTIONS(968), + [anon_sym_unsigned] = ACTIONS(968), + [anon_sym_long] = ACTIONS(968), + [anon_sym_short] = ACTIONS(968), + [sym_primitive_type] = ACTIONS(968), + [anon_sym_enum] = ACTIONS(968), + [anon_sym_struct] = ACTIONS(968), + [anon_sym_union] = ACTIONS(968), + [anon_sym_if] = ACTIONS(968), + [anon_sym_else] = ACTIONS(968), + [anon_sym_switch] = ACTIONS(968), + [anon_sym_case] = ACTIONS(968), + [anon_sym_default] = ACTIONS(968), + [anon_sym_while] = ACTIONS(968), + [anon_sym_do] = ACTIONS(968), + [anon_sym_for] = ACTIONS(968), + [anon_sym_return] = ACTIONS(968), + [anon_sym_break] = ACTIONS(968), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_BANG] = ACTIONS(970), + [anon_sym_TILDE] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_sizeof] = ACTIONS(968), + [sym_number_literal] = ACTIONS(970), + [anon_sym_L_SQUOTE] = ACTIONS(970), + [anon_sym_u_SQUOTE] = ACTIONS(970), + [anon_sym_U_SQUOTE] = ACTIONS(970), + [anon_sym_u8_SQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(970), + [anon_sym_L_DQUOTE] = ACTIONS(970), + [anon_sym_u_DQUOTE] = ACTIONS(970), + [anon_sym_U_DQUOTE] = ACTIONS(970), + [anon_sym_u8_DQUOTE] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(970), + [sym_true] = ACTIONS(968), + [sym_false] = ACTIONS(968), + [sym_null] = ACTIONS(968), + [sym_comment] = ACTIONS(3), + }, + [252] = { + [sym_identifier] = ACTIONS(1048), + [aux_sym_preproc_include_token1] = ACTIONS(1048), + [aux_sym_preproc_def_token1] = ACTIONS(1048), + [aux_sym_preproc_if_token1] = ACTIONS(1048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1048), + [sym_preproc_directive] = ACTIONS(1048), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_typedef] = ACTIONS(1048), + [anon_sym_extern] = ACTIONS(1048), + [anon_sym___attribute__] = ACTIONS(1048), + [anon_sym_LPAREN2] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(1050), + [anon_sym_STAR] = ACTIONS(1050), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_auto] = ACTIONS(1048), + [anon_sym_register] = ACTIONS(1048), + [anon_sym_inline] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1048), + [anon_sym_volatile] = ACTIONS(1048), + [anon_sym_restrict] = ACTIONS(1048), + [anon_sym__Atomic] = ACTIONS(1048), + [anon_sym_signed] = ACTIONS(1048), + [anon_sym_unsigned] = ACTIONS(1048), + [anon_sym_long] = ACTIONS(1048), + [anon_sym_short] = ACTIONS(1048), + [sym_primitive_type] = ACTIONS(1048), + [anon_sym_enum] = ACTIONS(1048), + [anon_sym_struct] = ACTIONS(1048), + [anon_sym_union] = ACTIONS(1048), + [anon_sym_if] = ACTIONS(1048), + [anon_sym_else] = ACTIONS(1048), + [anon_sym_switch] = ACTIONS(1048), + [anon_sym_case] = ACTIONS(1048), + [anon_sym_default] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1048), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_goto] = ACTIONS(1048), + [anon_sym_AMP] = ACTIONS(1050), + [anon_sym_BANG] = ACTIONS(1050), + [anon_sym_TILDE] = ACTIONS(1050), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_PLUS_PLUS] = ACTIONS(1050), + [anon_sym_sizeof] = ACTIONS(1048), + [sym_number_literal] = ACTIONS(1050), + [anon_sym_L_SQUOTE] = ACTIONS(1050), + [anon_sym_u_SQUOTE] = ACTIONS(1050), + [anon_sym_U_SQUOTE] = ACTIONS(1050), + [anon_sym_u8_SQUOTE] = ACTIONS(1050), + [anon_sym_SQUOTE] = ACTIONS(1050), + [anon_sym_L_DQUOTE] = ACTIONS(1050), + [anon_sym_u_DQUOTE] = ACTIONS(1050), + [anon_sym_U_DQUOTE] = ACTIONS(1050), + [anon_sym_u8_DQUOTE] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym_true] = ACTIONS(1048), + [sym_false] = ACTIONS(1048), + [sym_null] = ACTIONS(1048), + [sym_comment] = ACTIONS(3), + }, + [253] = { + [sym_identifier] = ACTIONS(1056), + [aux_sym_preproc_include_token1] = ACTIONS(1056), + [aux_sym_preproc_def_token1] = ACTIONS(1056), + [aux_sym_preproc_if_token1] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1056), + [sym_preproc_directive] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1058), + [anon_sym_typedef] = ACTIONS(1056), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym___attribute__] = ACTIONS(1056), + [anon_sym_LPAREN2] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(1058), + [anon_sym_RBRACE] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_static] = ACTIONS(1056), + [anon_sym_auto] = ACTIONS(1056), + [anon_sym_register] = ACTIONS(1056), + [anon_sym_inline] = ACTIONS(1056), + [anon_sym_const] = ACTIONS(1056), + [anon_sym_volatile] = ACTIONS(1056), + [anon_sym_restrict] = ACTIONS(1056), + [anon_sym__Atomic] = ACTIONS(1056), + [anon_sym_signed] = ACTIONS(1056), + [anon_sym_unsigned] = ACTIONS(1056), + [anon_sym_long] = ACTIONS(1056), + [anon_sym_short] = ACTIONS(1056), + [sym_primitive_type] = ACTIONS(1056), + [anon_sym_enum] = ACTIONS(1056), + [anon_sym_struct] = ACTIONS(1056), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_if] = ACTIONS(1056), + [anon_sym_else] = ACTIONS(1056), + [anon_sym_switch] = ACTIONS(1056), + [anon_sym_case] = ACTIONS(1056), + [anon_sym_default] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1056), + [anon_sym_do] = ACTIONS(1056), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_return] = ACTIONS(1056), + [anon_sym_break] = ACTIONS(1056), + [anon_sym_continue] = ACTIONS(1056), + [anon_sym_goto] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_BANG] = ACTIONS(1058), + [anon_sym_TILDE] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1056), + [anon_sym_PLUS] = ACTIONS(1056), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_sizeof] = ACTIONS(1056), + [sym_number_literal] = ACTIONS(1058), + [anon_sym_L_SQUOTE] = ACTIONS(1058), + [anon_sym_u_SQUOTE] = ACTIONS(1058), + [anon_sym_U_SQUOTE] = ACTIONS(1058), + [anon_sym_u8_SQUOTE] = ACTIONS(1058), + [anon_sym_SQUOTE] = ACTIONS(1058), + [anon_sym_L_DQUOTE] = ACTIONS(1058), + [anon_sym_u_DQUOTE] = ACTIONS(1058), + [anon_sym_U_DQUOTE] = ACTIONS(1058), + [anon_sym_u8_DQUOTE] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1058), + [sym_true] = ACTIONS(1056), + [sym_false] = ACTIONS(1056), + [sym_null] = ACTIONS(1056), + [sym_comment] = ACTIONS(3), + }, + [254] = { + [sym_identifier] = ACTIONS(1020), + [aux_sym_preproc_include_token1] = ACTIONS(1020), + [aux_sym_preproc_def_token1] = ACTIONS(1020), + [aux_sym_preproc_if_token1] = ACTIONS(1020), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), + [sym_preproc_directive] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1022), + [anon_sym_typedef] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(1020), + [anon_sym___attribute__] = ACTIONS(1020), + [anon_sym_LPAREN2] = ACTIONS(1022), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_RBRACE] = ACTIONS(1022), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(1020), + [anon_sym_auto] = ACTIONS(1020), + [anon_sym_register] = ACTIONS(1020), + [anon_sym_inline] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1020), + [anon_sym_volatile] = ACTIONS(1020), + [anon_sym_restrict] = ACTIONS(1020), + [anon_sym__Atomic] = ACTIONS(1020), + [anon_sym_signed] = ACTIONS(1020), + [anon_sym_unsigned] = ACTIONS(1020), + [anon_sym_long] = ACTIONS(1020), + [anon_sym_short] = ACTIONS(1020), + [sym_primitive_type] = ACTIONS(1020), + [anon_sym_enum] = ACTIONS(1020), + [anon_sym_struct] = ACTIONS(1020), + [anon_sym_union] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_else] = ACTIONS(1020), + [anon_sym_switch] = ACTIONS(1020), + [anon_sym_case] = ACTIONS(1020), + [anon_sym_default] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_goto] = ACTIONS(1020), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1022), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_sizeof] = ACTIONS(1020), + [sym_number_literal] = ACTIONS(1022), + [anon_sym_L_SQUOTE] = ACTIONS(1022), + [anon_sym_u_SQUOTE] = ACTIONS(1022), + [anon_sym_U_SQUOTE] = ACTIONS(1022), + [anon_sym_u8_SQUOTE] = ACTIONS(1022), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_L_DQUOTE] = ACTIONS(1022), + [anon_sym_u_DQUOTE] = ACTIONS(1022), + [anon_sym_U_DQUOTE] = ACTIONS(1022), + [anon_sym_u8_DQUOTE] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1022), + [sym_true] = ACTIONS(1020), + [sym_false] = ACTIONS(1020), + [sym_null] = ACTIONS(1020), + [sym_comment] = ACTIONS(3), + }, + [255] = { + [sym_identifier] = ACTIONS(996), + [aux_sym_preproc_include_token1] = ACTIONS(996), + [aux_sym_preproc_def_token1] = ACTIONS(996), + [aux_sym_preproc_if_token1] = ACTIONS(996), + [aux_sym_preproc_if_token2] = ACTIONS(996), + [aux_sym_preproc_ifdef_token1] = ACTIONS(996), + [aux_sym_preproc_ifdef_token2] = ACTIONS(996), + [sym_preproc_directive] = ACTIONS(996), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_typedef] = ACTIONS(996), + [anon_sym_extern] = ACTIONS(996), + [anon_sym___attribute__] = ACTIONS(996), + [anon_sym_LPAREN2] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_static] = ACTIONS(996), + [anon_sym_auto] = ACTIONS(996), + [anon_sym_register] = ACTIONS(996), + [anon_sym_inline] = ACTIONS(996), + [anon_sym_const] = ACTIONS(996), + [anon_sym_volatile] = ACTIONS(996), + [anon_sym_restrict] = ACTIONS(996), + [anon_sym__Atomic] = ACTIONS(996), + [anon_sym_signed] = ACTIONS(996), + [anon_sym_unsigned] = ACTIONS(996), + [anon_sym_long] = ACTIONS(996), + [anon_sym_short] = ACTIONS(996), + [sym_primitive_type] = ACTIONS(996), + [anon_sym_enum] = ACTIONS(996), + [anon_sym_struct] = ACTIONS(996), + [anon_sym_union] = ACTIONS(996), + [anon_sym_if] = ACTIONS(996), + [anon_sym_else] = ACTIONS(996), + [anon_sym_switch] = ACTIONS(996), + [anon_sym_case] = ACTIONS(996), + [anon_sym_default] = ACTIONS(996), + [anon_sym_while] = ACTIONS(996), + [anon_sym_do] = ACTIONS(996), + [anon_sym_for] = ACTIONS(996), + [anon_sym_return] = ACTIONS(996), + [anon_sym_break] = ACTIONS(996), + [anon_sym_continue] = ACTIONS(996), + [anon_sym_goto] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_PLUS_PLUS] = ACTIONS(998), + [anon_sym_sizeof] = ACTIONS(996), + [sym_number_literal] = ACTIONS(998), + [anon_sym_L_SQUOTE] = ACTIONS(998), + [anon_sym_u_SQUOTE] = ACTIONS(998), + [anon_sym_U_SQUOTE] = ACTIONS(998), + [anon_sym_u8_SQUOTE] = ACTIONS(998), + [anon_sym_SQUOTE] = ACTIONS(998), + [anon_sym_L_DQUOTE] = ACTIONS(998), + [anon_sym_u_DQUOTE] = ACTIONS(998), + [anon_sym_U_DQUOTE] = ACTIONS(998), + [anon_sym_u8_DQUOTE] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym_true] = ACTIONS(996), + [sym_false] = ACTIONS(996), + [sym_null] = ACTIONS(996), + [sym_comment] = ACTIONS(3), + }, + [256] = { + [ts_builtin_sym_end] = ACTIONS(1042), + [sym_identifier] = ACTIONS(1040), + [aux_sym_preproc_include_token1] = ACTIONS(1040), + [aux_sym_preproc_def_token1] = ACTIONS(1040), + [aux_sym_preproc_if_token1] = ACTIONS(1040), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), + [sym_preproc_directive] = ACTIONS(1040), + [anon_sym_SEMI] = ACTIONS(1042), + [anon_sym_typedef] = ACTIONS(1040), + [anon_sym_extern] = ACTIONS(1040), + [anon_sym___attribute__] = ACTIONS(1040), + [anon_sym_LPAREN2] = ACTIONS(1042), + [anon_sym_LBRACE] = ACTIONS(1042), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_static] = ACTIONS(1040), + [anon_sym_auto] = ACTIONS(1040), + [anon_sym_register] = ACTIONS(1040), + [anon_sym_inline] = ACTIONS(1040), + [anon_sym_const] = ACTIONS(1040), + [anon_sym_volatile] = ACTIONS(1040), + [anon_sym_restrict] = ACTIONS(1040), + [anon_sym__Atomic] = ACTIONS(1040), + [anon_sym_signed] = ACTIONS(1040), + [anon_sym_unsigned] = ACTIONS(1040), + [anon_sym_long] = ACTIONS(1040), + [anon_sym_short] = ACTIONS(1040), + [sym_primitive_type] = ACTIONS(1040), + [anon_sym_enum] = ACTIONS(1040), + [anon_sym_struct] = ACTIONS(1040), + [anon_sym_union] = ACTIONS(1040), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(1040), + [anon_sym_switch] = ACTIONS(1040), + [anon_sym_case] = ACTIONS(1040), + [anon_sym_default] = ACTIONS(1040), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_do] = ACTIONS(1040), + [anon_sym_for] = ACTIONS(1040), + [anon_sym_return] = ACTIONS(1040), + [anon_sym_break] = ACTIONS(1040), + [anon_sym_continue] = ACTIONS(1040), + [anon_sym_goto] = ACTIONS(1040), + [anon_sym_AMP] = ACTIONS(1042), + [anon_sym_BANG] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1040), + [anon_sym_PLUS] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1042), + [anon_sym_sizeof] = ACTIONS(1040), + [sym_number_literal] = ACTIONS(1042), + [anon_sym_L_SQUOTE] = ACTIONS(1042), + [anon_sym_u_SQUOTE] = ACTIONS(1042), + [anon_sym_U_SQUOTE] = ACTIONS(1042), + [anon_sym_u8_SQUOTE] = ACTIONS(1042), + [anon_sym_SQUOTE] = ACTIONS(1042), + [anon_sym_L_DQUOTE] = ACTIONS(1042), + [anon_sym_u_DQUOTE] = ACTIONS(1042), + [anon_sym_U_DQUOTE] = ACTIONS(1042), + [anon_sym_u8_DQUOTE] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(1042), + [sym_true] = ACTIONS(1040), + [sym_false] = ACTIONS(1040), + [sym_null] = ACTIONS(1040), + [sym_comment] = ACTIONS(3), + }, + [257] = { + [sym_identifier] = ACTIONS(1082), + [aux_sym_preproc_include_token1] = ACTIONS(1082), + [aux_sym_preproc_def_token1] = ACTIONS(1082), + [aux_sym_preproc_if_token1] = ACTIONS(1082), + [aux_sym_preproc_if_token2] = ACTIONS(1082), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1082), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1082), + [sym_preproc_directive] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1084), + [anon_sym_typedef] = ACTIONS(1082), + [anon_sym_extern] = ACTIONS(1082), + [anon_sym___attribute__] = ACTIONS(1082), + [anon_sym_LPAREN2] = ACTIONS(1084), + [anon_sym_LBRACE] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1082), + [anon_sym_auto] = ACTIONS(1082), + [anon_sym_register] = ACTIONS(1082), + [anon_sym_inline] = ACTIONS(1082), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_volatile] = ACTIONS(1082), + [anon_sym_restrict] = ACTIONS(1082), + [anon_sym__Atomic] = ACTIONS(1082), + [anon_sym_signed] = ACTIONS(1082), + [anon_sym_unsigned] = ACTIONS(1082), + [anon_sym_long] = ACTIONS(1082), + [anon_sym_short] = ACTIONS(1082), + [sym_primitive_type] = ACTIONS(1082), + [anon_sym_enum] = ACTIONS(1082), + [anon_sym_struct] = ACTIONS(1082), + [anon_sym_union] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_else] = ACTIONS(1082), + [anon_sym_switch] = ACTIONS(1082), + [anon_sym_case] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_do] = ACTIONS(1082), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_return] = ACTIONS(1082), + [anon_sym_break] = ACTIONS(1082), + [anon_sym_continue] = ACTIONS(1082), + [anon_sym_goto] = ACTIONS(1082), + [anon_sym_AMP] = ACTIONS(1084), + [anon_sym_BANG] = ACTIONS(1084), + [anon_sym_TILDE] = ACTIONS(1084), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH_DASH] = ACTIONS(1084), + [anon_sym_PLUS_PLUS] = ACTIONS(1084), + [anon_sym_sizeof] = ACTIONS(1082), + [sym_number_literal] = ACTIONS(1084), + [anon_sym_L_SQUOTE] = ACTIONS(1084), + [anon_sym_u_SQUOTE] = ACTIONS(1084), + [anon_sym_U_SQUOTE] = ACTIONS(1084), + [anon_sym_u8_SQUOTE] = ACTIONS(1084), + [anon_sym_SQUOTE] = ACTIONS(1084), + [anon_sym_L_DQUOTE] = ACTIONS(1084), + [anon_sym_u_DQUOTE] = ACTIONS(1084), + [anon_sym_U_DQUOTE] = ACTIONS(1084), + [anon_sym_u8_DQUOTE] = ACTIONS(1084), + [anon_sym_DQUOTE] = ACTIONS(1084), + [sym_true] = ACTIONS(1082), + [sym_false] = ACTIONS(1082), + [sym_null] = ACTIONS(1082), + [sym_comment] = ACTIONS(3), + }, + [258] = { + [sym_identifier] = ACTIONS(1090), + [aux_sym_preproc_include_token1] = ACTIONS(1090), + [aux_sym_preproc_def_token1] = ACTIONS(1090), + [aux_sym_preproc_if_token1] = ACTIONS(1090), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1090), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1090), + [sym_preproc_directive] = ACTIONS(1090), + [anon_sym_SEMI] = ACTIONS(1092), + [anon_sym_typedef] = ACTIONS(1090), + [anon_sym_extern] = ACTIONS(1090), + [anon_sym___attribute__] = ACTIONS(1090), + [anon_sym_LPAREN2] = ACTIONS(1092), + [anon_sym_LBRACE] = ACTIONS(1092), + [anon_sym_RBRACE] = ACTIONS(1092), + [anon_sym_STAR] = ACTIONS(1092), + [anon_sym_static] = ACTIONS(1090), + [anon_sym_auto] = ACTIONS(1090), + [anon_sym_register] = ACTIONS(1090), + [anon_sym_inline] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_volatile] = ACTIONS(1090), + [anon_sym_restrict] = ACTIONS(1090), + [anon_sym__Atomic] = ACTIONS(1090), + [anon_sym_signed] = ACTIONS(1090), + [anon_sym_unsigned] = ACTIONS(1090), + [anon_sym_long] = ACTIONS(1090), + [anon_sym_short] = ACTIONS(1090), + [sym_primitive_type] = ACTIONS(1090), + [anon_sym_enum] = ACTIONS(1090), + [anon_sym_struct] = ACTIONS(1090), + [anon_sym_union] = ACTIONS(1090), + [anon_sym_if] = ACTIONS(1090), + [anon_sym_else] = ACTIONS(1090), + [anon_sym_switch] = ACTIONS(1090), + [anon_sym_case] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1090), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(1090), + [anon_sym_for] = ACTIONS(1090), + [anon_sym_return] = ACTIONS(1090), + [anon_sym_break] = ACTIONS(1090), + [anon_sym_continue] = ACTIONS(1090), + [anon_sym_goto] = ACTIONS(1090), + [anon_sym_AMP] = ACTIONS(1092), + [anon_sym_BANG] = ACTIONS(1092), + [anon_sym_TILDE] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_DASH_DASH] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1092), + [anon_sym_sizeof] = ACTIONS(1090), + [sym_number_literal] = ACTIONS(1092), + [anon_sym_L_SQUOTE] = ACTIONS(1092), + [anon_sym_u_SQUOTE] = ACTIONS(1092), + [anon_sym_U_SQUOTE] = ACTIONS(1092), + [anon_sym_u8_SQUOTE] = ACTIONS(1092), + [anon_sym_SQUOTE] = ACTIONS(1092), + [anon_sym_L_DQUOTE] = ACTIONS(1092), + [anon_sym_u_DQUOTE] = ACTIONS(1092), + [anon_sym_U_DQUOTE] = ACTIONS(1092), + [anon_sym_u8_DQUOTE] = ACTIONS(1092), + [anon_sym_DQUOTE] = ACTIONS(1092), + [sym_true] = ACTIONS(1090), + [sym_false] = ACTIONS(1090), + [sym_null] = ACTIONS(1090), + [sym_comment] = ACTIONS(3), + }, + [259] = { + [sym_identifier] = ACTIONS(1068), + [aux_sym_preproc_include_token1] = ACTIONS(1068), + [aux_sym_preproc_def_token1] = ACTIONS(1068), + [aux_sym_preproc_if_token1] = ACTIONS(1068), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1068), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1068), + [sym_preproc_directive] = ACTIONS(1068), + [anon_sym_SEMI] = ACTIONS(1070), + [anon_sym_typedef] = ACTIONS(1068), + [anon_sym_extern] = ACTIONS(1068), + [anon_sym___attribute__] = ACTIONS(1068), + [anon_sym_LPAREN2] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_RBRACE] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(1070), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_auto] = ACTIONS(1068), + [anon_sym_register] = ACTIONS(1068), + [anon_sym_inline] = ACTIONS(1068), + [anon_sym_const] = ACTIONS(1068), + [anon_sym_volatile] = ACTIONS(1068), + [anon_sym_restrict] = ACTIONS(1068), + [anon_sym__Atomic] = ACTIONS(1068), + [anon_sym_signed] = ACTIONS(1068), + [anon_sym_unsigned] = ACTIONS(1068), + [anon_sym_long] = ACTIONS(1068), + [anon_sym_short] = ACTIONS(1068), + [sym_primitive_type] = ACTIONS(1068), + [anon_sym_enum] = ACTIONS(1068), + [anon_sym_struct] = ACTIONS(1068), + [anon_sym_union] = ACTIONS(1068), + [anon_sym_if] = ACTIONS(1068), + [anon_sym_else] = ACTIONS(1068), + [anon_sym_switch] = ACTIONS(1068), + [anon_sym_case] = ACTIONS(1068), + [anon_sym_default] = ACTIONS(1068), + [anon_sym_while] = ACTIONS(1068), + [anon_sym_do] = ACTIONS(1068), + [anon_sym_for] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1068), + [anon_sym_break] = ACTIONS(1068), + [anon_sym_continue] = ACTIONS(1068), + [anon_sym_goto] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1070), + [anon_sym_BANG] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_PLUS_PLUS] = ACTIONS(1070), + [anon_sym_sizeof] = ACTIONS(1068), + [sym_number_literal] = ACTIONS(1070), + [anon_sym_L_SQUOTE] = ACTIONS(1070), + [anon_sym_u_SQUOTE] = ACTIONS(1070), + [anon_sym_U_SQUOTE] = ACTIONS(1070), + [anon_sym_u8_SQUOTE] = ACTIONS(1070), + [anon_sym_SQUOTE] = ACTIONS(1070), + [anon_sym_L_DQUOTE] = ACTIONS(1070), + [anon_sym_u_DQUOTE] = ACTIONS(1070), + [anon_sym_U_DQUOTE] = ACTIONS(1070), + [anon_sym_u8_DQUOTE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym_true] = ACTIONS(1068), + [sym_false] = ACTIONS(1068), + [sym_null] = ACTIONS(1068), + [sym_comment] = ACTIONS(3), + }, + [260] = { + [sym_identifier] = ACTIONS(1044), + [aux_sym_preproc_include_token1] = ACTIONS(1044), + [aux_sym_preproc_def_token1] = ACTIONS(1044), + [aux_sym_preproc_if_token1] = ACTIONS(1044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1044), + [sym_preproc_directive] = ACTIONS(1044), + [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_typedef] = ACTIONS(1044), + [anon_sym_extern] = ACTIONS(1044), + [anon_sym___attribute__] = ACTIONS(1044), + [anon_sym_LPAREN2] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_STAR] = ACTIONS(1046), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_auto] = ACTIONS(1044), + [anon_sym_register] = ACTIONS(1044), + [anon_sym_inline] = ACTIONS(1044), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_volatile] = ACTIONS(1044), + [anon_sym_restrict] = ACTIONS(1044), + [anon_sym__Atomic] = ACTIONS(1044), + [anon_sym_signed] = ACTIONS(1044), + [anon_sym_unsigned] = ACTIONS(1044), + [anon_sym_long] = ACTIONS(1044), + [anon_sym_short] = ACTIONS(1044), + [sym_primitive_type] = ACTIONS(1044), + [anon_sym_enum] = ACTIONS(1044), + [anon_sym_struct] = ACTIONS(1044), + [anon_sym_union] = ACTIONS(1044), + [anon_sym_if] = ACTIONS(1044), + [anon_sym_else] = ACTIONS(1044), + [anon_sym_switch] = ACTIONS(1044), + [anon_sym_case] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1044), + [anon_sym_while] = ACTIONS(1044), + [anon_sym_do] = ACTIONS(1044), + [anon_sym_for] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1044), + [anon_sym_break] = ACTIONS(1044), + [anon_sym_continue] = ACTIONS(1044), + [anon_sym_goto] = ACTIONS(1044), + [anon_sym_AMP] = ACTIONS(1046), + [anon_sym_BANG] = ACTIONS(1046), + [anon_sym_TILDE] = ACTIONS(1046), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_DASH_DASH] = ACTIONS(1046), + [anon_sym_PLUS_PLUS] = ACTIONS(1046), + [anon_sym_sizeof] = ACTIONS(1044), + [sym_number_literal] = ACTIONS(1046), + [anon_sym_L_SQUOTE] = ACTIONS(1046), + [anon_sym_u_SQUOTE] = ACTIONS(1046), + [anon_sym_U_SQUOTE] = ACTIONS(1046), + [anon_sym_u8_SQUOTE] = ACTIONS(1046), + [anon_sym_SQUOTE] = ACTIONS(1046), + [anon_sym_L_DQUOTE] = ACTIONS(1046), + [anon_sym_u_DQUOTE] = ACTIONS(1046), + [anon_sym_U_DQUOTE] = ACTIONS(1046), + [anon_sym_u8_DQUOTE] = ACTIONS(1046), + [anon_sym_DQUOTE] = ACTIONS(1046), + [sym_true] = ACTIONS(1044), + [sym_false] = ACTIONS(1044), + [sym_null] = ACTIONS(1044), + [sym_comment] = ACTIONS(3), + }, + [261] = { + [sym_identifier] = ACTIONS(1086), + [aux_sym_preproc_include_token1] = ACTIONS(1086), + [aux_sym_preproc_def_token1] = ACTIONS(1086), + [aux_sym_preproc_if_token1] = ACTIONS(1086), + [aux_sym_preproc_if_token2] = ACTIONS(1086), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1086), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1086), + [sym_preproc_directive] = ACTIONS(1086), + [anon_sym_SEMI] = ACTIONS(1088), + [anon_sym_typedef] = ACTIONS(1086), + [anon_sym_extern] = ACTIONS(1086), + [anon_sym___attribute__] = ACTIONS(1086), + [anon_sym_LPAREN2] = ACTIONS(1088), + [anon_sym_LBRACE] = ACTIONS(1088), + [anon_sym_STAR] = ACTIONS(1088), + [anon_sym_static] = ACTIONS(1086), + [anon_sym_auto] = ACTIONS(1086), + [anon_sym_register] = ACTIONS(1086), + [anon_sym_inline] = ACTIONS(1086), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_volatile] = ACTIONS(1086), + [anon_sym_restrict] = ACTIONS(1086), + [anon_sym__Atomic] = ACTIONS(1086), + [anon_sym_signed] = ACTIONS(1086), + [anon_sym_unsigned] = ACTIONS(1086), + [anon_sym_long] = ACTIONS(1086), + [anon_sym_short] = ACTIONS(1086), + [sym_primitive_type] = ACTIONS(1086), + [anon_sym_enum] = ACTIONS(1086), + [anon_sym_struct] = ACTIONS(1086), + [anon_sym_union] = ACTIONS(1086), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_else] = ACTIONS(1086), + [anon_sym_switch] = ACTIONS(1086), + [anon_sym_case] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(1086), + [anon_sym_while] = ACTIONS(1086), + [anon_sym_do] = ACTIONS(1086), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1086), + [anon_sym_break] = ACTIONS(1086), + [anon_sym_continue] = ACTIONS(1086), + [anon_sym_goto] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_TILDE] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_DASH_DASH] = ACTIONS(1088), + [anon_sym_PLUS_PLUS] = ACTIONS(1088), + [anon_sym_sizeof] = ACTIONS(1086), + [sym_number_literal] = ACTIONS(1088), + [anon_sym_L_SQUOTE] = ACTIONS(1088), + [anon_sym_u_SQUOTE] = ACTIONS(1088), + [anon_sym_U_SQUOTE] = ACTIONS(1088), + [anon_sym_u8_SQUOTE] = ACTIONS(1088), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_L_DQUOTE] = ACTIONS(1088), + [anon_sym_u_DQUOTE] = ACTIONS(1088), + [anon_sym_U_DQUOTE] = ACTIONS(1088), + [anon_sym_u8_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1088), + [sym_true] = ACTIONS(1086), + [sym_false] = ACTIONS(1086), + [sym_null] = ACTIONS(1086), + [sym_comment] = ACTIONS(3), + }, + [262] = { + [sym_identifier] = ACTIONS(1032), + [aux_sym_preproc_include_token1] = ACTIONS(1032), + [aux_sym_preproc_def_token1] = ACTIONS(1032), + [aux_sym_preproc_if_token1] = ACTIONS(1032), + [aux_sym_preproc_if_token2] = ACTIONS(1032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1032), + [sym_preproc_directive] = ACTIONS(1032), + [anon_sym_SEMI] = ACTIONS(1034), + [anon_sym_typedef] = ACTIONS(1032), + [anon_sym_extern] = ACTIONS(1032), + [anon_sym___attribute__] = ACTIONS(1032), + [anon_sym_LPAREN2] = ACTIONS(1034), + [anon_sym_LBRACE] = ACTIONS(1034), + [anon_sym_STAR] = ACTIONS(1034), + [anon_sym_static] = ACTIONS(1032), + [anon_sym_auto] = ACTIONS(1032), + [anon_sym_register] = ACTIONS(1032), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_const] = ACTIONS(1032), + [anon_sym_volatile] = ACTIONS(1032), + [anon_sym_restrict] = ACTIONS(1032), + [anon_sym__Atomic] = ACTIONS(1032), + [anon_sym_signed] = ACTIONS(1032), + [anon_sym_unsigned] = ACTIONS(1032), + [anon_sym_long] = ACTIONS(1032), + [anon_sym_short] = ACTIONS(1032), + [sym_primitive_type] = ACTIONS(1032), + [anon_sym_enum] = ACTIONS(1032), + [anon_sym_struct] = ACTIONS(1032), + [anon_sym_union] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_else] = ACTIONS(1032), + [anon_sym_switch] = ACTIONS(1032), + [anon_sym_case] = ACTIONS(1032), + [anon_sym_default] = ACTIONS(1032), + [anon_sym_while] = ACTIONS(1032), + [anon_sym_do] = ACTIONS(1032), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_return] = ACTIONS(1032), + [anon_sym_break] = ACTIONS(1032), + [anon_sym_continue] = ACTIONS(1032), + [anon_sym_goto] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(1034), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_TILDE] = ACTIONS(1034), + [anon_sym_DASH] = ACTIONS(1032), + [anon_sym_PLUS] = ACTIONS(1032), + [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_PLUS_PLUS] = ACTIONS(1034), + [anon_sym_sizeof] = ACTIONS(1032), + [sym_number_literal] = ACTIONS(1034), + [anon_sym_L_SQUOTE] = ACTIONS(1034), + [anon_sym_u_SQUOTE] = ACTIONS(1034), + [anon_sym_U_SQUOTE] = ACTIONS(1034), + [anon_sym_u8_SQUOTE] = ACTIONS(1034), + [anon_sym_SQUOTE] = ACTIONS(1034), + [anon_sym_L_DQUOTE] = ACTIONS(1034), + [anon_sym_u_DQUOTE] = ACTIONS(1034), + [anon_sym_U_DQUOTE] = ACTIONS(1034), + [anon_sym_u8_DQUOTE] = ACTIONS(1034), + [anon_sym_DQUOTE] = ACTIONS(1034), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_comment] = ACTIONS(3), + }, + [263] = { + [sym_identifier] = ACTIONS(1078), + [aux_sym_preproc_include_token1] = ACTIONS(1078), + [aux_sym_preproc_def_token1] = ACTIONS(1078), + [aux_sym_preproc_if_token1] = ACTIONS(1078), + [aux_sym_preproc_if_token2] = ACTIONS(1078), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1078), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1078), + [sym_preproc_directive] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1080), + [anon_sym_typedef] = ACTIONS(1078), + [anon_sym_extern] = ACTIONS(1078), + [anon_sym___attribute__] = ACTIONS(1078), + [anon_sym_LPAREN2] = ACTIONS(1080), + [anon_sym_LBRACE] = ACTIONS(1080), + [anon_sym_STAR] = ACTIONS(1080), + [anon_sym_static] = ACTIONS(1078), + [anon_sym_auto] = ACTIONS(1078), + [anon_sym_register] = ACTIONS(1078), + [anon_sym_inline] = ACTIONS(1078), + [anon_sym_const] = ACTIONS(1078), + [anon_sym_volatile] = ACTIONS(1078), + [anon_sym_restrict] = ACTIONS(1078), + [anon_sym__Atomic] = ACTIONS(1078), + [anon_sym_signed] = ACTIONS(1078), + [anon_sym_unsigned] = ACTIONS(1078), + [anon_sym_long] = ACTIONS(1078), + [anon_sym_short] = ACTIONS(1078), + [sym_primitive_type] = ACTIONS(1078), + [anon_sym_enum] = ACTIONS(1078), + [anon_sym_struct] = ACTIONS(1078), + [anon_sym_union] = ACTIONS(1078), + [anon_sym_if] = ACTIONS(1078), + [anon_sym_else] = ACTIONS(1078), + [anon_sym_switch] = ACTIONS(1078), + [anon_sym_case] = ACTIONS(1078), + [anon_sym_default] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1078), + [anon_sym_do] = ACTIONS(1078), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_return] = ACTIONS(1078), + [anon_sym_break] = ACTIONS(1078), + [anon_sym_continue] = ACTIONS(1078), + [anon_sym_goto] = ACTIONS(1078), + [anon_sym_AMP] = ACTIONS(1080), + [anon_sym_BANG] = ACTIONS(1080), + [anon_sym_TILDE] = ACTIONS(1080), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1080), + [anon_sym_PLUS_PLUS] = ACTIONS(1080), + [anon_sym_sizeof] = ACTIONS(1078), + [sym_number_literal] = ACTIONS(1080), + [anon_sym_L_SQUOTE] = ACTIONS(1080), + [anon_sym_u_SQUOTE] = ACTIONS(1080), + [anon_sym_U_SQUOTE] = ACTIONS(1080), + [anon_sym_u8_SQUOTE] = ACTIONS(1080), + [anon_sym_SQUOTE] = ACTIONS(1080), + [anon_sym_L_DQUOTE] = ACTIONS(1080), + [anon_sym_u_DQUOTE] = ACTIONS(1080), + [anon_sym_U_DQUOTE] = ACTIONS(1080), + [anon_sym_u8_DQUOTE] = ACTIONS(1080), + [anon_sym_DQUOTE] = ACTIONS(1080), + [sym_true] = ACTIONS(1078), + [sym_false] = ACTIONS(1078), + [sym_null] = ACTIONS(1078), + [sym_comment] = ACTIONS(3), + }, + [264] = { + [sym_identifier] = ACTIONS(1072), + [aux_sym_preproc_include_token1] = ACTIONS(1072), + [aux_sym_preproc_def_token1] = ACTIONS(1072), + [aux_sym_preproc_if_token1] = ACTIONS(1072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1072), + [sym_preproc_directive] = ACTIONS(1072), + [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_typedef] = ACTIONS(1072), + [anon_sym_extern] = ACTIONS(1072), + [anon_sym___attribute__] = ACTIONS(1072), + [anon_sym_LPAREN2] = ACTIONS(1074), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(1074), + [anon_sym_STAR] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1072), + [anon_sym_auto] = ACTIONS(1072), + [anon_sym_register] = ACTIONS(1072), + [anon_sym_inline] = ACTIONS(1072), + [anon_sym_const] = ACTIONS(1072), + [anon_sym_volatile] = ACTIONS(1072), + [anon_sym_restrict] = ACTIONS(1072), + [anon_sym__Atomic] = ACTIONS(1072), + [anon_sym_signed] = ACTIONS(1072), + [anon_sym_unsigned] = ACTIONS(1072), + [anon_sym_long] = ACTIONS(1072), + [anon_sym_short] = ACTIONS(1072), + [sym_primitive_type] = ACTIONS(1072), + [anon_sym_enum] = ACTIONS(1072), + [anon_sym_struct] = ACTIONS(1072), + [anon_sym_union] = ACTIONS(1072), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_else] = ACTIONS(1196), + [anon_sym_switch] = ACTIONS(1072), + [anon_sym_case] = ACTIONS(1072), + [anon_sym_default] = ACTIONS(1072), + [anon_sym_while] = ACTIONS(1072), + [anon_sym_do] = ACTIONS(1072), + [anon_sym_for] = ACTIONS(1072), + [anon_sym_return] = ACTIONS(1072), + [anon_sym_break] = ACTIONS(1072), + [anon_sym_continue] = ACTIONS(1072), + [anon_sym_goto] = ACTIONS(1072), + [anon_sym_AMP] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_DASH] = ACTIONS(1072), + [anon_sym_PLUS] = ACTIONS(1072), + [anon_sym_DASH_DASH] = ACTIONS(1074), + [anon_sym_PLUS_PLUS] = ACTIONS(1074), + [anon_sym_sizeof] = ACTIONS(1072), + [sym_number_literal] = ACTIONS(1074), + [anon_sym_L_SQUOTE] = ACTIONS(1074), + [anon_sym_u_SQUOTE] = ACTIONS(1074), + [anon_sym_U_SQUOTE] = ACTIONS(1074), + [anon_sym_u8_SQUOTE] = ACTIONS(1074), + [anon_sym_SQUOTE] = ACTIONS(1074), + [anon_sym_L_DQUOTE] = ACTIONS(1074), + [anon_sym_u_DQUOTE] = ACTIONS(1074), + [anon_sym_U_DQUOTE] = ACTIONS(1074), + [anon_sym_u8_DQUOTE] = ACTIONS(1074), + [anon_sym_DQUOTE] = ACTIONS(1074), + [sym_true] = ACTIONS(1072), + [sym_false] = ACTIONS(1072), + [sym_null] = ACTIONS(1072), + [sym_comment] = ACTIONS(3), + }, + [265] = { + [sym_identifier] = ACTIONS(964), + [aux_sym_preproc_include_token1] = ACTIONS(964), + [aux_sym_preproc_def_token1] = ACTIONS(964), + [aux_sym_preproc_if_token1] = ACTIONS(964), + [aux_sym_preproc_ifdef_token1] = ACTIONS(964), + [aux_sym_preproc_ifdef_token2] = ACTIONS(964), + [sym_preproc_directive] = ACTIONS(964), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_typedef] = ACTIONS(964), + [anon_sym_extern] = ACTIONS(964), + [anon_sym___attribute__] = ACTIONS(964), + [anon_sym_LPAREN2] = ACTIONS(966), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_static] = ACTIONS(964), + [anon_sym_auto] = ACTIONS(964), + [anon_sym_register] = ACTIONS(964), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_const] = ACTIONS(964), + [anon_sym_volatile] = ACTIONS(964), + [anon_sym_restrict] = ACTIONS(964), + [anon_sym__Atomic] = ACTIONS(964), + [anon_sym_signed] = ACTIONS(964), + [anon_sym_unsigned] = ACTIONS(964), + [anon_sym_long] = ACTIONS(964), + [anon_sym_short] = ACTIONS(964), + [sym_primitive_type] = ACTIONS(964), + [anon_sym_enum] = ACTIONS(964), + [anon_sym_struct] = ACTIONS(964), + [anon_sym_union] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_else] = ACTIONS(964), + [anon_sym_switch] = ACTIONS(964), + [anon_sym_case] = ACTIONS(964), + [anon_sym_default] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_do] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_goto] = ACTIONS(964), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_sizeof] = ACTIONS(964), + [sym_number_literal] = ACTIONS(966), + [anon_sym_L_SQUOTE] = ACTIONS(966), + [anon_sym_u_SQUOTE] = ACTIONS(966), + [anon_sym_U_SQUOTE] = ACTIONS(966), + [anon_sym_u8_SQUOTE] = ACTIONS(966), + [anon_sym_SQUOTE] = ACTIONS(966), + [anon_sym_L_DQUOTE] = ACTIONS(966), + [anon_sym_u_DQUOTE] = ACTIONS(966), + [anon_sym_U_DQUOTE] = ACTIONS(966), + [anon_sym_u8_DQUOTE] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym_true] = ACTIONS(964), + [sym_false] = ACTIONS(964), + [sym_null] = ACTIONS(964), + [sym_comment] = ACTIONS(3), + }, + [266] = { + [sym_identifier] = ACTIONS(1004), + [aux_sym_preproc_include_token1] = ACTIONS(1004), + [aux_sym_preproc_def_token1] = ACTIONS(1004), + [aux_sym_preproc_if_token1] = ACTIONS(1004), + [aux_sym_preproc_if_token2] = ACTIONS(1004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1004), + [sym_preproc_directive] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym_typedef] = ACTIONS(1004), + [anon_sym_extern] = ACTIONS(1004), + [anon_sym___attribute__] = ACTIONS(1004), + [anon_sym_LPAREN2] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_static] = ACTIONS(1004), + [anon_sym_auto] = ACTIONS(1004), + [anon_sym_register] = ACTIONS(1004), + [anon_sym_inline] = ACTIONS(1004), + [anon_sym_const] = ACTIONS(1004), + [anon_sym_volatile] = ACTIONS(1004), + [anon_sym_restrict] = ACTIONS(1004), + [anon_sym__Atomic] = ACTIONS(1004), + [anon_sym_signed] = ACTIONS(1004), + [anon_sym_unsigned] = ACTIONS(1004), + [anon_sym_long] = ACTIONS(1004), + [anon_sym_short] = ACTIONS(1004), + [sym_primitive_type] = ACTIONS(1004), + [anon_sym_enum] = ACTIONS(1004), + [anon_sym_struct] = ACTIONS(1004), + [anon_sym_union] = ACTIONS(1004), + [anon_sym_if] = ACTIONS(1004), + [anon_sym_else] = ACTIONS(1004), + [anon_sym_switch] = ACTIONS(1004), + [anon_sym_case] = ACTIONS(1004), + [anon_sym_default] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(1004), + [anon_sym_do] = ACTIONS(1004), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_return] = ACTIONS(1004), + [anon_sym_break] = ACTIONS(1004), + [anon_sym_continue] = ACTIONS(1004), + [anon_sym_goto] = ACTIONS(1004), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1004), + [sym_number_literal] = ACTIONS(1006), + [anon_sym_L_SQUOTE] = ACTIONS(1006), + [anon_sym_u_SQUOTE] = ACTIONS(1006), + [anon_sym_U_SQUOTE] = ACTIONS(1006), + [anon_sym_u8_SQUOTE] = ACTIONS(1006), + [anon_sym_SQUOTE] = ACTIONS(1006), + [anon_sym_L_DQUOTE] = ACTIONS(1006), + [anon_sym_u_DQUOTE] = ACTIONS(1006), + [anon_sym_U_DQUOTE] = ACTIONS(1006), + [anon_sym_u8_DQUOTE] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym_true] = ACTIONS(1004), + [sym_false] = ACTIONS(1004), + [sym_null] = ACTIONS(1004), + [sym_comment] = ACTIONS(3), + }, + [267] = { + [sym_identifier] = ACTIONS(1028), + [aux_sym_preproc_include_token1] = ACTIONS(1028), + [aux_sym_preproc_def_token1] = ACTIONS(1028), + [aux_sym_preproc_if_token1] = ACTIONS(1028), + [aux_sym_preproc_if_token2] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), + [sym_preproc_directive] = ACTIONS(1028), + [anon_sym_SEMI] = ACTIONS(1030), + [anon_sym_typedef] = ACTIONS(1028), + [anon_sym_extern] = ACTIONS(1028), + [anon_sym___attribute__] = ACTIONS(1028), + [anon_sym_LPAREN2] = ACTIONS(1030), + [anon_sym_LBRACE] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_static] = ACTIONS(1028), + [anon_sym_auto] = ACTIONS(1028), + [anon_sym_register] = ACTIONS(1028), + [anon_sym_inline] = ACTIONS(1028), + [anon_sym_const] = ACTIONS(1028), + [anon_sym_volatile] = ACTIONS(1028), + [anon_sym_restrict] = ACTIONS(1028), + [anon_sym__Atomic] = ACTIONS(1028), + [anon_sym_signed] = ACTIONS(1028), + [anon_sym_unsigned] = ACTIONS(1028), + [anon_sym_long] = ACTIONS(1028), + [anon_sym_short] = ACTIONS(1028), + [sym_primitive_type] = ACTIONS(1028), + [anon_sym_enum] = ACTIONS(1028), + [anon_sym_struct] = ACTIONS(1028), + [anon_sym_union] = ACTIONS(1028), + [anon_sym_if] = ACTIONS(1028), + [anon_sym_else] = ACTIONS(1028), + [anon_sym_switch] = ACTIONS(1028), + [anon_sym_case] = ACTIONS(1028), + [anon_sym_default] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1028), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_break] = ACTIONS(1028), + [anon_sym_continue] = ACTIONS(1028), + [anon_sym_goto] = ACTIONS(1028), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_TILDE] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_sizeof] = ACTIONS(1028), + [sym_number_literal] = ACTIONS(1030), + [anon_sym_L_SQUOTE] = ACTIONS(1030), + [anon_sym_u_SQUOTE] = ACTIONS(1030), + [anon_sym_U_SQUOTE] = ACTIONS(1030), + [anon_sym_u8_SQUOTE] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_L_DQUOTE] = ACTIONS(1030), + [anon_sym_u_DQUOTE] = ACTIONS(1030), + [anon_sym_U_DQUOTE] = ACTIONS(1030), + [anon_sym_u8_DQUOTE] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym_true] = ACTIONS(1028), + [sym_false] = ACTIONS(1028), + [sym_null] = ACTIONS(1028), + [sym_comment] = ACTIONS(3), + }, + [268] = { + [sym_identifier] = ACTIONS(1052), + [aux_sym_preproc_include_token1] = ACTIONS(1052), + [aux_sym_preproc_def_token1] = ACTIONS(1052), + [aux_sym_preproc_if_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), + [sym_preproc_directive] = ACTIONS(1052), + [anon_sym_SEMI] = ACTIONS(1054), + [anon_sym_typedef] = ACTIONS(1052), + [anon_sym_extern] = ACTIONS(1052), + [anon_sym___attribute__] = ACTIONS(1052), + [anon_sym_LPAREN2] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_RBRACE] = ACTIONS(1054), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_static] = ACTIONS(1052), + [anon_sym_auto] = ACTIONS(1052), + [anon_sym_register] = ACTIONS(1052), + [anon_sym_inline] = ACTIONS(1052), + [anon_sym_const] = ACTIONS(1052), + [anon_sym_volatile] = ACTIONS(1052), + [anon_sym_restrict] = ACTIONS(1052), + [anon_sym__Atomic] = ACTIONS(1052), + [anon_sym_signed] = ACTIONS(1052), + [anon_sym_unsigned] = ACTIONS(1052), + [anon_sym_long] = ACTIONS(1052), + [anon_sym_short] = ACTIONS(1052), + [sym_primitive_type] = ACTIONS(1052), + [anon_sym_enum] = ACTIONS(1052), + [anon_sym_struct] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1052), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_else] = ACTIONS(1052), + [anon_sym_switch] = ACTIONS(1052), + [anon_sym_case] = ACTIONS(1052), + [anon_sym_default] = ACTIONS(1052), + [anon_sym_while] = ACTIONS(1052), + [anon_sym_do] = ACTIONS(1052), + [anon_sym_for] = ACTIONS(1052), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_break] = ACTIONS(1052), + [anon_sym_continue] = ACTIONS(1052), + [anon_sym_goto] = ACTIONS(1052), + [anon_sym_AMP] = ACTIONS(1054), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_DASH_DASH] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1054), + [anon_sym_sizeof] = ACTIONS(1052), + [sym_number_literal] = ACTIONS(1054), + [anon_sym_L_SQUOTE] = ACTIONS(1054), + [anon_sym_u_SQUOTE] = ACTIONS(1054), + [anon_sym_U_SQUOTE] = ACTIONS(1054), + [anon_sym_u8_SQUOTE] = ACTIONS(1054), + [anon_sym_SQUOTE] = ACTIONS(1054), + [anon_sym_L_DQUOTE] = ACTIONS(1054), + [anon_sym_u_DQUOTE] = ACTIONS(1054), + [anon_sym_U_DQUOTE] = ACTIONS(1054), + [anon_sym_u8_DQUOTE] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym_true] = ACTIONS(1052), + [sym_false] = ACTIONS(1052), + [sym_null] = ACTIONS(1052), + [sym_comment] = ACTIONS(3), + }, + [269] = { + [sym_identifier] = ACTIONS(1036), + [aux_sym_preproc_include_token1] = ACTIONS(1036), + [aux_sym_preproc_def_token1] = ACTIONS(1036), + [aux_sym_preproc_if_token1] = ACTIONS(1036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1036), + [sym_preproc_directive] = ACTIONS(1036), + [anon_sym_SEMI] = ACTIONS(1038), + [anon_sym_typedef] = ACTIONS(1036), + [anon_sym_extern] = ACTIONS(1036), + [anon_sym___attribute__] = ACTIONS(1036), + [anon_sym_LPAREN2] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_RBRACE] = ACTIONS(1038), + [anon_sym_STAR] = ACTIONS(1038), + [anon_sym_static] = ACTIONS(1036), + [anon_sym_auto] = ACTIONS(1036), + [anon_sym_register] = ACTIONS(1036), + [anon_sym_inline] = ACTIONS(1036), + [anon_sym_const] = ACTIONS(1036), + [anon_sym_volatile] = ACTIONS(1036), + [anon_sym_restrict] = ACTIONS(1036), + [anon_sym__Atomic] = ACTIONS(1036), + [anon_sym_signed] = ACTIONS(1036), + [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), + [anon_sym_if] = ACTIONS(1036), + [anon_sym_else] = ACTIONS(1036), + [anon_sym_switch] = ACTIONS(1036), + [anon_sym_case] = ACTIONS(1036), + [anon_sym_default] = ACTIONS(1036), + [anon_sym_while] = ACTIONS(1036), + [anon_sym_do] = ACTIONS(1036), + [anon_sym_for] = ACTIONS(1036), + [anon_sym_return] = ACTIONS(1036), + [anon_sym_break] = ACTIONS(1036), + [anon_sym_continue] = ACTIONS(1036), + [anon_sym_goto] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1038), + [anon_sym_BANG] = ACTIONS(1038), + [anon_sym_TILDE] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_PLUS] = ACTIONS(1036), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_sizeof] = ACTIONS(1036), + [sym_number_literal] = ACTIONS(1038), + [anon_sym_L_SQUOTE] = ACTIONS(1038), + [anon_sym_u_SQUOTE] = ACTIONS(1038), + [anon_sym_U_SQUOTE] = ACTIONS(1038), + [anon_sym_u8_SQUOTE] = ACTIONS(1038), + [anon_sym_SQUOTE] = ACTIONS(1038), + [anon_sym_L_DQUOTE] = ACTIONS(1038), + [anon_sym_u_DQUOTE] = ACTIONS(1038), + [anon_sym_U_DQUOTE] = ACTIONS(1038), + [anon_sym_u8_DQUOTE] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1038), + [sym_true] = ACTIONS(1036), + [sym_false] = ACTIONS(1036), + [sym_null] = ACTIONS(1036), + [sym_comment] = ACTIONS(3), + }, + [270] = { + [sym_identifier] = ACTIONS(1016), + [aux_sym_preproc_include_token1] = ACTIONS(1016), + [aux_sym_preproc_def_token1] = ACTIONS(1016), + [aux_sym_preproc_if_token1] = ACTIONS(1016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1016), + [sym_preproc_directive] = ACTIONS(1016), + [anon_sym_SEMI] = ACTIONS(1018), + [anon_sym_typedef] = ACTIONS(1016), + [anon_sym_extern] = ACTIONS(1016), + [anon_sym___attribute__] = ACTIONS(1016), + [anon_sym_LPAREN2] = ACTIONS(1018), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_RBRACE] = ACTIONS(1018), + [anon_sym_STAR] = ACTIONS(1018), + [anon_sym_static] = ACTIONS(1016), + [anon_sym_auto] = ACTIONS(1016), + [anon_sym_register] = ACTIONS(1016), + [anon_sym_inline] = ACTIONS(1016), + [anon_sym_const] = ACTIONS(1016), + [anon_sym_volatile] = ACTIONS(1016), + [anon_sym_restrict] = ACTIONS(1016), + [anon_sym__Atomic] = ACTIONS(1016), + [anon_sym_signed] = ACTIONS(1016), + [anon_sym_unsigned] = ACTIONS(1016), + [anon_sym_long] = ACTIONS(1016), + [anon_sym_short] = ACTIONS(1016), + [sym_primitive_type] = ACTIONS(1016), + [anon_sym_enum] = ACTIONS(1016), + [anon_sym_struct] = ACTIONS(1016), + [anon_sym_union] = ACTIONS(1016), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_else] = ACTIONS(1016), + [anon_sym_switch] = ACTIONS(1016), + [anon_sym_case] = ACTIONS(1016), + [anon_sym_default] = ACTIONS(1016), + [anon_sym_while] = ACTIONS(1016), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_for] = ACTIONS(1016), + [anon_sym_return] = ACTIONS(1016), + [anon_sym_break] = ACTIONS(1016), + [anon_sym_continue] = ACTIONS(1016), + [anon_sym_goto] = ACTIONS(1016), + [anon_sym_AMP] = ACTIONS(1018), + [anon_sym_BANG] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1016), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), + [anon_sym_PLUS_PLUS] = ACTIONS(1018), + [anon_sym_sizeof] = ACTIONS(1016), + [sym_number_literal] = ACTIONS(1018), + [anon_sym_L_SQUOTE] = ACTIONS(1018), + [anon_sym_u_SQUOTE] = ACTIONS(1018), + [anon_sym_U_SQUOTE] = ACTIONS(1018), + [anon_sym_u8_SQUOTE] = ACTIONS(1018), + [anon_sym_SQUOTE] = ACTIONS(1018), + [anon_sym_L_DQUOTE] = ACTIONS(1018), + [anon_sym_u_DQUOTE] = ACTIONS(1018), + [anon_sym_U_DQUOTE] = ACTIONS(1018), + [anon_sym_u8_DQUOTE] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(1018), + [sym_true] = ACTIONS(1016), + [sym_false] = ACTIONS(1016), + [sym_null] = ACTIONS(1016), + [sym_comment] = ACTIONS(3), + }, + [271] = { + [sym_identifier] = ACTIONS(1060), + [aux_sym_preproc_include_token1] = ACTIONS(1060), + [aux_sym_preproc_def_token1] = ACTIONS(1060), + [aux_sym_preproc_if_token1] = ACTIONS(1060), + [aux_sym_preproc_if_token2] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), + [sym_preproc_directive] = ACTIONS(1060), + [anon_sym_SEMI] = ACTIONS(1062), + [anon_sym_typedef] = ACTIONS(1060), + [anon_sym_extern] = ACTIONS(1060), + [anon_sym___attribute__] = ACTIONS(1060), + [anon_sym_LPAREN2] = ACTIONS(1062), + [anon_sym_LBRACE] = ACTIONS(1062), + [anon_sym_STAR] = ACTIONS(1062), + [anon_sym_static] = ACTIONS(1060), + [anon_sym_auto] = ACTIONS(1060), + [anon_sym_register] = ACTIONS(1060), + [anon_sym_inline] = ACTIONS(1060), + [anon_sym_const] = ACTIONS(1060), + [anon_sym_volatile] = ACTIONS(1060), + [anon_sym_restrict] = ACTIONS(1060), + [anon_sym__Atomic] = ACTIONS(1060), + [anon_sym_signed] = ACTIONS(1060), + [anon_sym_unsigned] = ACTIONS(1060), + [anon_sym_long] = ACTIONS(1060), + [anon_sym_short] = ACTIONS(1060), + [sym_primitive_type] = ACTIONS(1060), + [anon_sym_enum] = ACTIONS(1060), + [anon_sym_struct] = ACTIONS(1060), + [anon_sym_union] = ACTIONS(1060), + [anon_sym_if] = ACTIONS(1060), + [anon_sym_else] = ACTIONS(1060), + [anon_sym_switch] = ACTIONS(1060), + [anon_sym_case] = ACTIONS(1060), + [anon_sym_default] = ACTIONS(1060), + [anon_sym_while] = ACTIONS(1060), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_for] = ACTIONS(1060), + [anon_sym_return] = ACTIONS(1060), + [anon_sym_break] = ACTIONS(1060), + [anon_sym_continue] = ACTIONS(1060), + [anon_sym_goto] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_BANG] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1060), + [anon_sym_PLUS] = ACTIONS(1060), + [anon_sym_DASH_DASH] = ACTIONS(1062), + [anon_sym_PLUS_PLUS] = ACTIONS(1062), + [anon_sym_sizeof] = ACTIONS(1060), + [sym_number_literal] = ACTIONS(1062), + [anon_sym_L_SQUOTE] = ACTIONS(1062), + [anon_sym_u_SQUOTE] = ACTIONS(1062), + [anon_sym_U_SQUOTE] = ACTIONS(1062), + [anon_sym_u8_SQUOTE] = ACTIONS(1062), + [anon_sym_SQUOTE] = ACTIONS(1062), + [anon_sym_L_DQUOTE] = ACTIONS(1062), + [anon_sym_u_DQUOTE] = ACTIONS(1062), + [anon_sym_U_DQUOTE] = ACTIONS(1062), + [anon_sym_u8_DQUOTE] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1062), + [sym_true] = ACTIONS(1060), + [sym_false] = ACTIONS(1060), + [sym_null] = ACTIONS(1060), + [sym_comment] = ACTIONS(3), + }, + [272] = { + [sym_identifier] = ACTIONS(1064), + [aux_sym_preproc_include_token1] = ACTIONS(1064), + [aux_sym_preproc_def_token1] = ACTIONS(1064), + [aux_sym_preproc_if_token1] = ACTIONS(1064), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1064), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1064), + [sym_preproc_directive] = ACTIONS(1064), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_typedef] = ACTIONS(1064), + [anon_sym_extern] = ACTIONS(1064), + [anon_sym___attribute__] = ACTIONS(1064), + [anon_sym_LPAREN2] = ACTIONS(1066), + [anon_sym_LBRACE] = ACTIONS(1066), + [anon_sym_RBRACE] = ACTIONS(1066), + [anon_sym_STAR] = ACTIONS(1066), + [anon_sym_static] = ACTIONS(1064), + [anon_sym_auto] = ACTIONS(1064), + [anon_sym_register] = ACTIONS(1064), + [anon_sym_inline] = ACTIONS(1064), + [anon_sym_const] = ACTIONS(1064), + [anon_sym_volatile] = ACTIONS(1064), + [anon_sym_restrict] = ACTIONS(1064), + [anon_sym__Atomic] = ACTIONS(1064), + [anon_sym_signed] = ACTIONS(1064), + [anon_sym_unsigned] = ACTIONS(1064), + [anon_sym_long] = ACTIONS(1064), + [anon_sym_short] = ACTIONS(1064), + [sym_primitive_type] = ACTIONS(1064), + [anon_sym_enum] = ACTIONS(1064), + [anon_sym_struct] = ACTIONS(1064), + [anon_sym_union] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(1064), + [anon_sym_else] = ACTIONS(1064), + [anon_sym_switch] = ACTIONS(1064), + [anon_sym_case] = ACTIONS(1064), + [anon_sym_default] = ACTIONS(1064), + [anon_sym_while] = ACTIONS(1064), + [anon_sym_do] = ACTIONS(1064), + [anon_sym_for] = ACTIONS(1064), + [anon_sym_return] = ACTIONS(1064), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1064), + [anon_sym_goto] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1064), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_sizeof] = ACTIONS(1064), + [sym_number_literal] = ACTIONS(1066), + [anon_sym_L_SQUOTE] = ACTIONS(1066), + [anon_sym_u_SQUOTE] = ACTIONS(1066), + [anon_sym_U_SQUOTE] = ACTIONS(1066), + [anon_sym_u8_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_L_DQUOTE] = ACTIONS(1066), + [anon_sym_u_DQUOTE] = ACTIONS(1066), + [anon_sym_U_DQUOTE] = ACTIONS(1066), + [anon_sym_u8_DQUOTE] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(1066), + [sym_true] = ACTIONS(1064), + [sym_false] = ACTIONS(1064), + [sym_null] = ACTIONS(1064), + [sym_comment] = ACTIONS(3), + }, + [273] = { + [ts_builtin_sym_end] = ACTIONS(1022), + [sym_identifier] = ACTIONS(1020), + [aux_sym_preproc_include_token1] = ACTIONS(1020), + [aux_sym_preproc_def_token1] = ACTIONS(1020), + [aux_sym_preproc_if_token1] = ACTIONS(1020), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), + [sym_preproc_directive] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1022), + [anon_sym_typedef] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(1020), + [anon_sym___attribute__] = ACTIONS(1020), + [anon_sym_LPAREN2] = ACTIONS(1022), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(1020), + [anon_sym_auto] = ACTIONS(1020), + [anon_sym_register] = ACTIONS(1020), + [anon_sym_inline] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1020), + [anon_sym_volatile] = ACTIONS(1020), + [anon_sym_restrict] = ACTIONS(1020), + [anon_sym__Atomic] = ACTIONS(1020), + [anon_sym_signed] = ACTIONS(1020), + [anon_sym_unsigned] = ACTIONS(1020), + [anon_sym_long] = ACTIONS(1020), + [anon_sym_short] = ACTIONS(1020), + [sym_primitive_type] = ACTIONS(1020), + [anon_sym_enum] = ACTIONS(1020), + [anon_sym_struct] = ACTIONS(1020), + [anon_sym_union] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_else] = ACTIONS(1020), + [anon_sym_switch] = ACTIONS(1020), + [anon_sym_case] = ACTIONS(1020), + [anon_sym_default] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_goto] = ACTIONS(1020), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1022), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_sizeof] = ACTIONS(1020), + [sym_number_literal] = ACTIONS(1022), + [anon_sym_L_SQUOTE] = ACTIONS(1022), + [anon_sym_u_SQUOTE] = ACTIONS(1022), + [anon_sym_U_SQUOTE] = ACTIONS(1022), + [anon_sym_u8_SQUOTE] = ACTIONS(1022), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_L_DQUOTE] = ACTIONS(1022), + [anon_sym_u_DQUOTE] = ACTIONS(1022), + [anon_sym_U_DQUOTE] = ACTIONS(1022), + [anon_sym_u8_DQUOTE] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1022), + [sym_true] = ACTIONS(1020), + [sym_false] = ACTIONS(1020), + [sym_null] = ACTIONS(1020), + [sym_comment] = ACTIONS(3), + }, + [274] = { + [sym_identifier] = ACTIONS(976), + [aux_sym_preproc_include_token1] = ACTIONS(976), + [aux_sym_preproc_def_token1] = ACTIONS(976), + [aux_sym_preproc_if_token1] = ACTIONS(976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(976), + [sym_preproc_directive] = ACTIONS(976), + [anon_sym_SEMI] = ACTIONS(978), + [anon_sym_typedef] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(976), + [anon_sym___attribute__] = ACTIONS(976), + [anon_sym_LPAREN2] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(978), + [anon_sym_RBRACE] = ACTIONS(978), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_static] = ACTIONS(976), + [anon_sym_auto] = ACTIONS(976), + [anon_sym_register] = ACTIONS(976), + [anon_sym_inline] = ACTIONS(976), + [anon_sym_const] = ACTIONS(976), + [anon_sym_volatile] = ACTIONS(976), + [anon_sym_restrict] = ACTIONS(976), + [anon_sym__Atomic] = ACTIONS(976), + [anon_sym_signed] = ACTIONS(976), + [anon_sym_unsigned] = ACTIONS(976), + [anon_sym_long] = ACTIONS(976), + [anon_sym_short] = ACTIONS(976), + [sym_primitive_type] = ACTIONS(976), + [anon_sym_enum] = ACTIONS(976), + [anon_sym_struct] = ACTIONS(976), + [anon_sym_union] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_else] = ACTIONS(976), + [anon_sym_switch] = ACTIONS(976), + [anon_sym_case] = ACTIONS(976), + [anon_sym_default] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_do] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_goto] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_PLUS_PLUS] = ACTIONS(978), + [anon_sym_sizeof] = ACTIONS(976), + [sym_number_literal] = ACTIONS(978), + [anon_sym_L_SQUOTE] = ACTIONS(978), + [anon_sym_u_SQUOTE] = ACTIONS(978), + [anon_sym_U_SQUOTE] = ACTIONS(978), + [anon_sym_u8_SQUOTE] = ACTIONS(978), + [anon_sym_SQUOTE] = ACTIONS(978), + [anon_sym_L_DQUOTE] = ACTIONS(978), + [anon_sym_u_DQUOTE] = ACTIONS(978), + [anon_sym_U_DQUOTE] = ACTIONS(978), + [anon_sym_u8_DQUOTE] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym_true] = ACTIONS(976), + [sym_false] = ACTIONS(976), + [sym_null] = ACTIONS(976), + [sym_comment] = ACTIONS(3), + }, + [275] = { + [sym_identifier] = ACTIONS(988), + [aux_sym_preproc_include_token1] = ACTIONS(988), + [aux_sym_preproc_def_token1] = ACTIONS(988), + [aux_sym_preproc_if_token1] = ACTIONS(988), + [aux_sym_preproc_if_token2] = ACTIONS(988), + [aux_sym_preproc_ifdef_token1] = ACTIONS(988), + [aux_sym_preproc_ifdef_token2] = ACTIONS(988), + [sym_preproc_directive] = ACTIONS(988), + [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_typedef] = ACTIONS(988), + [anon_sym_extern] = ACTIONS(988), + [anon_sym___attribute__] = ACTIONS(988), + [anon_sym_LPAREN2] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(990), + [anon_sym_STAR] = ACTIONS(990), + [anon_sym_static] = ACTIONS(988), + [anon_sym_auto] = ACTIONS(988), + [anon_sym_register] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(988), + [anon_sym_const] = ACTIONS(988), + [anon_sym_volatile] = ACTIONS(988), + [anon_sym_restrict] = ACTIONS(988), + [anon_sym__Atomic] = ACTIONS(988), + [anon_sym_signed] = ACTIONS(988), + [anon_sym_unsigned] = ACTIONS(988), + [anon_sym_long] = ACTIONS(988), + [anon_sym_short] = ACTIONS(988), + [sym_primitive_type] = ACTIONS(988), + [anon_sym_enum] = ACTIONS(988), + [anon_sym_struct] = ACTIONS(988), + [anon_sym_union] = ACTIONS(988), + [anon_sym_if] = ACTIONS(988), + [anon_sym_else] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(988), + [anon_sym_case] = ACTIONS(988), + [anon_sym_default] = ACTIONS(988), + [anon_sym_while] = ACTIONS(988), + [anon_sym_do] = ACTIONS(988), + [anon_sym_for] = ACTIONS(988), + [anon_sym_return] = ACTIONS(988), + [anon_sym_break] = ACTIONS(988), + [anon_sym_continue] = ACTIONS(988), + [anon_sym_goto] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(990), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(990), + [anon_sym_DASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_sizeof] = ACTIONS(988), + [sym_number_literal] = ACTIONS(990), + [anon_sym_L_SQUOTE] = ACTIONS(990), + [anon_sym_u_SQUOTE] = ACTIONS(990), + [anon_sym_U_SQUOTE] = ACTIONS(990), + [anon_sym_u8_SQUOTE] = ACTIONS(990), + [anon_sym_SQUOTE] = ACTIONS(990), + [anon_sym_L_DQUOTE] = ACTIONS(990), + [anon_sym_u_DQUOTE] = ACTIONS(990), + [anon_sym_U_DQUOTE] = ACTIONS(990), + [anon_sym_u8_DQUOTE] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym_true] = ACTIONS(988), + [sym_false] = ACTIONS(988), + [sym_null] = ACTIONS(988), + [sym_comment] = ACTIONS(3), + }, + [276] = { + [sym_identifier] = ACTIONS(980), + [aux_sym_preproc_include_token1] = ACTIONS(980), + [aux_sym_preproc_def_token1] = ACTIONS(980), + [aux_sym_preproc_if_token1] = ACTIONS(980), + [aux_sym_preproc_if_token2] = ACTIONS(980), + [aux_sym_preproc_ifdef_token1] = ACTIONS(980), + [aux_sym_preproc_ifdef_token2] = ACTIONS(980), + [sym_preproc_directive] = ACTIONS(980), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_typedef] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym___attribute__] = ACTIONS(980), + [anon_sym_LPAREN2] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_STAR] = ACTIONS(982), + [anon_sym_static] = ACTIONS(980), + [anon_sym_auto] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_inline] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [anon_sym_volatile] = ACTIONS(980), + [anon_sym_restrict] = ACTIONS(980), + [anon_sym__Atomic] = ACTIONS(980), + [anon_sym_signed] = ACTIONS(980), + [anon_sym_unsigned] = ACTIONS(980), + [anon_sym_long] = ACTIONS(980), + [anon_sym_short] = ACTIONS(980), + [sym_primitive_type] = ACTIONS(980), + [anon_sym_enum] = ACTIONS(980), + [anon_sym_struct] = ACTIONS(980), + [anon_sym_union] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_else] = ACTIONS(980), + [anon_sym_switch] = ACTIONS(980), + [anon_sym_case] = ACTIONS(980), + [anon_sym_default] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_goto] = ACTIONS(980), + [anon_sym_AMP] = ACTIONS(982), + [anon_sym_BANG] = ACTIONS(982), + [anon_sym_TILDE] = ACTIONS(982), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(982), + [anon_sym_PLUS_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(980), + [sym_number_literal] = ACTIONS(982), + [anon_sym_L_SQUOTE] = ACTIONS(982), + [anon_sym_u_SQUOTE] = ACTIONS(982), + [anon_sym_U_SQUOTE] = ACTIONS(982), + [anon_sym_u8_SQUOTE] = ACTIONS(982), + [anon_sym_SQUOTE] = ACTIONS(982), + [anon_sym_L_DQUOTE] = ACTIONS(982), + [anon_sym_u_DQUOTE] = ACTIONS(982), + [anon_sym_U_DQUOTE] = ACTIONS(982), + [anon_sym_u8_DQUOTE] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym_true] = ACTIONS(980), + [sym_false] = ACTIONS(980), + [sym_null] = ACTIONS(980), + [sym_comment] = ACTIONS(3), + }, + [277] = { + [sym_identifier] = ACTIONS(972), + [aux_sym_preproc_include_token1] = ACTIONS(972), + [aux_sym_preproc_def_token1] = ACTIONS(972), + [aux_sym_preproc_if_token1] = ACTIONS(972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(972), + [sym_preproc_directive] = ACTIONS(972), + [anon_sym_SEMI] = ACTIONS(974), + [anon_sym_typedef] = ACTIONS(972), + [anon_sym_extern] = ACTIONS(972), + [anon_sym___attribute__] = ACTIONS(972), + [anon_sym_LPAREN2] = ACTIONS(974), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_RBRACE] = ACTIONS(974), + [anon_sym_STAR] = ACTIONS(974), + [anon_sym_static] = ACTIONS(972), + [anon_sym_auto] = ACTIONS(972), + [anon_sym_register] = ACTIONS(972), + [anon_sym_inline] = ACTIONS(972), + [anon_sym_const] = ACTIONS(972), + [anon_sym_volatile] = ACTIONS(972), + [anon_sym_restrict] = ACTIONS(972), + [anon_sym__Atomic] = ACTIONS(972), + [anon_sym_signed] = ACTIONS(972), + [anon_sym_unsigned] = ACTIONS(972), + [anon_sym_long] = ACTIONS(972), + [anon_sym_short] = ACTIONS(972), + [sym_primitive_type] = ACTIONS(972), + [anon_sym_enum] = ACTIONS(972), + [anon_sym_struct] = ACTIONS(972), + [anon_sym_union] = ACTIONS(972), + [anon_sym_if] = ACTIONS(972), + [anon_sym_else] = ACTIONS(972), + [anon_sym_switch] = ACTIONS(972), + [anon_sym_case] = ACTIONS(972), + [anon_sym_default] = ACTIONS(972), + [anon_sym_while] = ACTIONS(972), + [anon_sym_do] = ACTIONS(972), + [anon_sym_for] = ACTIONS(972), + [anon_sym_return] = ACTIONS(972), + [anon_sym_break] = ACTIONS(972), + [anon_sym_continue] = ACTIONS(972), + [anon_sym_goto] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(974), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(974), + [anon_sym_sizeof] = ACTIONS(972), + [sym_number_literal] = ACTIONS(974), + [anon_sym_L_SQUOTE] = ACTIONS(974), + [anon_sym_u_SQUOTE] = ACTIONS(974), + [anon_sym_U_SQUOTE] = ACTIONS(974), + [anon_sym_u8_SQUOTE] = ACTIONS(974), + [anon_sym_SQUOTE] = ACTIONS(974), + [anon_sym_L_DQUOTE] = ACTIONS(974), + [anon_sym_u_DQUOTE] = ACTIONS(974), + [anon_sym_U_DQUOTE] = ACTIONS(974), + [anon_sym_u8_DQUOTE] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(974), + [sym_true] = ACTIONS(972), + [sym_false] = ACTIONS(972), + [sym_null] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + }, + [278] = { + [sym_type_qualifier] = STATE(721), + [sym__type_specifier] = STATE(761), + [sym_sized_type_specifier] = STATE(761), + [sym_enum_specifier] = STATE(761), + [sym_struct_specifier] = STATE(761), + [sym_union_specifier] = STATE(761), + [sym__expression] = STATE(579), + [sym_comma_expression] = STATE(1039), + [sym_conditional_expression] = STATE(579), + [sym_assignment_expression] = STATE(579), + [sym_pointer_expression] = STATE(505), + [sym_unary_expression] = STATE(579), + [sym_binary_expression] = STATE(579), + [sym_update_expression] = STATE(579), + [sym_cast_expression] = STATE(579), + [sym_type_descriptor] = STATE(1063), + [sym_sizeof_expression] = STATE(579), + [sym_subscript_expression] = STATE(505), + [sym_call_expression] = STATE(505), + [sym_field_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(579), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(579), + [sym_concatenated_string] = STATE(579), + [sym_string_literal] = STATE(380), + [sym_macro_type_specifier] = STATE(761), + [aux_sym_type_definition_repeat1] = STATE(721), + [aux_sym_sized_type_specifier_repeat1] = STATE(764), + [sym_identifier] = ACTIONS(1182), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(1184), + [anon_sym_unsigned] = ACTIONS(1184), + [anon_sym_long] = ACTIONS(1184), + [anon_sym_short] = ACTIONS(1184), + [sym_primitive_type] = ACTIONS(1186), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(1188), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(1190), + [sym_false] = ACTIONS(1190), + [sym_null] = ACTIONS(1190), + [sym_comment] = ACTIONS(3), + }, + [279] = { + [sym_identifier] = ACTIONS(1012), + [aux_sym_preproc_include_token1] = ACTIONS(1012), + [aux_sym_preproc_def_token1] = ACTIONS(1012), + [aux_sym_preproc_if_token1] = ACTIONS(1012), + [aux_sym_preproc_if_token2] = ACTIONS(1012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1012), + [sym_preproc_directive] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1014), + [anon_sym_typedef] = ACTIONS(1012), + [anon_sym_extern] = ACTIONS(1012), + [anon_sym___attribute__] = ACTIONS(1012), + [anon_sym_LPAREN2] = ACTIONS(1014), + [anon_sym_LBRACE] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1014), + [anon_sym_static] = ACTIONS(1012), + [anon_sym_auto] = ACTIONS(1012), + [anon_sym_register] = ACTIONS(1012), + [anon_sym_inline] = ACTIONS(1012), + [anon_sym_const] = ACTIONS(1012), + [anon_sym_volatile] = ACTIONS(1012), + [anon_sym_restrict] = ACTIONS(1012), + [anon_sym__Atomic] = ACTIONS(1012), + [anon_sym_signed] = ACTIONS(1012), + [anon_sym_unsigned] = ACTIONS(1012), + [anon_sym_long] = ACTIONS(1012), + [anon_sym_short] = ACTIONS(1012), + [sym_primitive_type] = ACTIONS(1012), + [anon_sym_enum] = ACTIONS(1012), + [anon_sym_struct] = ACTIONS(1012), + [anon_sym_union] = ACTIONS(1012), + [anon_sym_if] = ACTIONS(1012), + [anon_sym_else] = ACTIONS(1012), + [anon_sym_switch] = ACTIONS(1012), + [anon_sym_case] = ACTIONS(1012), + [anon_sym_default] = ACTIONS(1012), + [anon_sym_while] = ACTIONS(1012), + [anon_sym_do] = ACTIONS(1012), + [anon_sym_for] = ACTIONS(1012), + [anon_sym_return] = ACTIONS(1012), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_continue] = ACTIONS(1012), + [anon_sym_goto] = ACTIONS(1012), + [anon_sym_AMP] = ACTIONS(1014), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_TILDE] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1012), + [anon_sym_PLUS] = ACTIONS(1012), + [anon_sym_DASH_DASH] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_sizeof] = ACTIONS(1012), + [sym_number_literal] = ACTIONS(1014), + [anon_sym_L_SQUOTE] = ACTIONS(1014), + [anon_sym_u_SQUOTE] = ACTIONS(1014), + [anon_sym_U_SQUOTE] = ACTIONS(1014), + [anon_sym_u8_SQUOTE] = ACTIONS(1014), + [anon_sym_SQUOTE] = ACTIONS(1014), + [anon_sym_L_DQUOTE] = ACTIONS(1014), + [anon_sym_u_DQUOTE] = ACTIONS(1014), + [anon_sym_U_DQUOTE] = ACTIONS(1014), + [anon_sym_u8_DQUOTE] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(1014), + [sym_true] = ACTIONS(1012), + [sym_false] = ACTIONS(1012), + [sym_null] = ACTIONS(1012), + [sym_comment] = ACTIONS(3), + }, + [280] = { + [sym_identifier] = ACTIONS(960), + [aux_sym_preproc_include_token1] = ACTIONS(960), + [aux_sym_preproc_def_token1] = ACTIONS(960), + [aux_sym_preproc_if_token1] = ACTIONS(960), + [aux_sym_preproc_if_token2] = ACTIONS(960), + [aux_sym_preproc_ifdef_token1] = ACTIONS(960), + [aux_sym_preproc_ifdef_token2] = ACTIONS(960), + [sym_preproc_directive] = ACTIONS(960), + [anon_sym_SEMI] = ACTIONS(962), + [anon_sym_typedef] = ACTIONS(960), + [anon_sym_extern] = ACTIONS(960), + [anon_sym___attribute__] = ACTIONS(960), + [anon_sym_LPAREN2] = ACTIONS(962), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(962), + [anon_sym_static] = ACTIONS(960), + [anon_sym_auto] = ACTIONS(960), + [anon_sym_register] = ACTIONS(960), + [anon_sym_inline] = ACTIONS(960), + [anon_sym_const] = ACTIONS(960), + [anon_sym_volatile] = ACTIONS(960), + [anon_sym_restrict] = ACTIONS(960), + [anon_sym__Atomic] = ACTIONS(960), + [anon_sym_signed] = ACTIONS(960), + [anon_sym_unsigned] = ACTIONS(960), + [anon_sym_long] = ACTIONS(960), + [anon_sym_short] = ACTIONS(960), + [sym_primitive_type] = ACTIONS(960), + [anon_sym_enum] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(960), + [anon_sym_union] = ACTIONS(960), + [anon_sym_if] = ACTIONS(960), + [anon_sym_else] = ACTIONS(960), + [anon_sym_switch] = ACTIONS(960), + [anon_sym_case] = ACTIONS(960), + [anon_sym_default] = ACTIONS(960), + [anon_sym_while] = ACTIONS(960), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(960), + [anon_sym_return] = ACTIONS(960), + [anon_sym_break] = ACTIONS(960), + [anon_sym_continue] = ACTIONS(960), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(962), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(962), + [anon_sym_DASH] = ACTIONS(960), + [anon_sym_PLUS] = ACTIONS(960), + [anon_sym_DASH_DASH] = ACTIONS(962), + [anon_sym_PLUS_PLUS] = ACTIONS(962), + [anon_sym_sizeof] = ACTIONS(960), + [sym_number_literal] = ACTIONS(962), + [anon_sym_L_SQUOTE] = ACTIONS(962), + [anon_sym_u_SQUOTE] = ACTIONS(962), + [anon_sym_U_SQUOTE] = ACTIONS(962), + [anon_sym_u8_SQUOTE] = ACTIONS(962), + [anon_sym_SQUOTE] = ACTIONS(962), + [anon_sym_L_DQUOTE] = ACTIONS(962), + [anon_sym_u_DQUOTE] = ACTIONS(962), + [anon_sym_U_DQUOTE] = ACTIONS(962), + [anon_sym_u8_DQUOTE] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(962), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), + [sym_comment] = ACTIONS(3), + }, + [281] = { + [sym_identifier] = ACTIONS(1064), + [aux_sym_preproc_include_token1] = ACTIONS(1064), + [aux_sym_preproc_def_token1] = ACTIONS(1064), + [aux_sym_preproc_if_token1] = ACTIONS(1064), + [aux_sym_preproc_if_token2] = ACTIONS(1064), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1064), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1064), + [sym_preproc_directive] = ACTIONS(1064), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_typedef] = ACTIONS(1064), + [anon_sym_extern] = ACTIONS(1064), + [anon_sym___attribute__] = ACTIONS(1064), + [anon_sym_LPAREN2] = ACTIONS(1066), + [anon_sym_LBRACE] = ACTIONS(1066), + [anon_sym_STAR] = ACTIONS(1066), + [anon_sym_static] = ACTIONS(1064), + [anon_sym_auto] = ACTIONS(1064), + [anon_sym_register] = ACTIONS(1064), + [anon_sym_inline] = ACTIONS(1064), + [anon_sym_const] = ACTIONS(1064), + [anon_sym_volatile] = ACTIONS(1064), + [anon_sym_restrict] = ACTIONS(1064), + [anon_sym__Atomic] = ACTIONS(1064), + [anon_sym_signed] = ACTIONS(1064), + [anon_sym_unsigned] = ACTIONS(1064), + [anon_sym_long] = ACTIONS(1064), + [anon_sym_short] = ACTIONS(1064), + [sym_primitive_type] = ACTIONS(1064), + [anon_sym_enum] = ACTIONS(1064), + [anon_sym_struct] = ACTIONS(1064), + [anon_sym_union] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(1064), + [anon_sym_else] = ACTIONS(1064), + [anon_sym_switch] = ACTIONS(1064), + [anon_sym_case] = ACTIONS(1064), + [anon_sym_default] = ACTIONS(1064), + [anon_sym_while] = ACTIONS(1064), + [anon_sym_do] = ACTIONS(1064), + [anon_sym_for] = ACTIONS(1064), + [anon_sym_return] = ACTIONS(1064), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1064), + [anon_sym_goto] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1064), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_sizeof] = ACTIONS(1064), + [sym_number_literal] = ACTIONS(1066), + [anon_sym_L_SQUOTE] = ACTIONS(1066), + [anon_sym_u_SQUOTE] = ACTIONS(1066), + [anon_sym_U_SQUOTE] = ACTIONS(1066), + [anon_sym_u8_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_L_DQUOTE] = ACTIONS(1066), + [anon_sym_u_DQUOTE] = ACTIONS(1066), + [anon_sym_U_DQUOTE] = ACTIONS(1066), + [anon_sym_u8_DQUOTE] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(1066), + [sym_true] = ACTIONS(1064), + [sym_false] = ACTIONS(1064), + [sym_null] = ACTIONS(1064), + [sym_comment] = ACTIONS(3), + }, + [282] = { + [ts_builtin_sym_end] = ACTIONS(998), + [sym_identifier] = ACTIONS(996), + [aux_sym_preproc_include_token1] = ACTIONS(996), + [aux_sym_preproc_def_token1] = ACTIONS(996), + [aux_sym_preproc_if_token1] = ACTIONS(996), + [aux_sym_preproc_ifdef_token1] = ACTIONS(996), + [aux_sym_preproc_ifdef_token2] = ACTIONS(996), + [sym_preproc_directive] = ACTIONS(996), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_typedef] = ACTIONS(996), + [anon_sym_extern] = ACTIONS(996), + [anon_sym___attribute__] = ACTIONS(996), + [anon_sym_LPAREN2] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_static] = ACTIONS(996), + [anon_sym_auto] = ACTIONS(996), + [anon_sym_register] = ACTIONS(996), + [anon_sym_inline] = ACTIONS(996), + [anon_sym_const] = ACTIONS(996), + [anon_sym_volatile] = ACTIONS(996), + [anon_sym_restrict] = ACTIONS(996), + [anon_sym__Atomic] = ACTIONS(996), + [anon_sym_signed] = ACTIONS(996), + [anon_sym_unsigned] = ACTIONS(996), + [anon_sym_long] = ACTIONS(996), + [anon_sym_short] = ACTIONS(996), + [sym_primitive_type] = ACTIONS(996), + [anon_sym_enum] = ACTIONS(996), + [anon_sym_struct] = ACTIONS(996), + [anon_sym_union] = ACTIONS(996), + [anon_sym_if] = ACTIONS(996), + [anon_sym_else] = ACTIONS(996), + [anon_sym_switch] = ACTIONS(996), + [anon_sym_case] = ACTIONS(996), + [anon_sym_default] = ACTIONS(996), + [anon_sym_while] = ACTIONS(996), + [anon_sym_do] = ACTIONS(996), + [anon_sym_for] = ACTIONS(996), + [anon_sym_return] = ACTIONS(996), + [anon_sym_break] = ACTIONS(996), + [anon_sym_continue] = ACTIONS(996), + [anon_sym_goto] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_PLUS_PLUS] = ACTIONS(998), + [anon_sym_sizeof] = ACTIONS(996), + [sym_number_literal] = ACTIONS(998), + [anon_sym_L_SQUOTE] = ACTIONS(998), + [anon_sym_u_SQUOTE] = ACTIONS(998), + [anon_sym_U_SQUOTE] = ACTIONS(998), + [anon_sym_u8_SQUOTE] = ACTIONS(998), + [anon_sym_SQUOTE] = ACTIONS(998), + [anon_sym_L_DQUOTE] = ACTIONS(998), + [anon_sym_u_DQUOTE] = ACTIONS(998), + [anon_sym_U_DQUOTE] = ACTIONS(998), + [anon_sym_u8_DQUOTE] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym_true] = ACTIONS(996), + [sym_false] = ACTIONS(996), + [sym_null] = ACTIONS(996), + [sym_comment] = ACTIONS(3), + }, + [283] = { + [ts_builtin_sym_end] = ACTIONS(1010), + [sym_identifier] = ACTIONS(1008), + [aux_sym_preproc_include_token1] = ACTIONS(1008), + [aux_sym_preproc_def_token1] = ACTIONS(1008), + [aux_sym_preproc_if_token1] = ACTIONS(1008), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1008), + [sym_preproc_directive] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_typedef] = ACTIONS(1008), + [anon_sym_extern] = ACTIONS(1008), + [anon_sym___attribute__] = ACTIONS(1008), + [anon_sym_LPAREN2] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_static] = ACTIONS(1008), + [anon_sym_auto] = ACTIONS(1008), + [anon_sym_register] = ACTIONS(1008), + [anon_sym_inline] = ACTIONS(1008), + [anon_sym_const] = ACTIONS(1008), + [anon_sym_volatile] = ACTIONS(1008), + [anon_sym_restrict] = ACTIONS(1008), + [anon_sym__Atomic] = ACTIONS(1008), + [anon_sym_signed] = ACTIONS(1008), + [anon_sym_unsigned] = ACTIONS(1008), + [anon_sym_long] = ACTIONS(1008), + [anon_sym_short] = ACTIONS(1008), + [sym_primitive_type] = ACTIONS(1008), + [anon_sym_enum] = ACTIONS(1008), + [anon_sym_struct] = ACTIONS(1008), + [anon_sym_union] = ACTIONS(1008), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_else] = ACTIONS(1008), + [anon_sym_switch] = ACTIONS(1008), + [anon_sym_case] = ACTIONS(1008), + [anon_sym_default] = ACTIONS(1008), + [anon_sym_while] = ACTIONS(1008), + [anon_sym_do] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1008), + [anon_sym_return] = ACTIONS(1008), + [anon_sym_break] = ACTIONS(1008), + [anon_sym_continue] = ACTIONS(1008), + [anon_sym_goto] = ACTIONS(1008), + [anon_sym_AMP] = ACTIONS(1010), + [anon_sym_BANG] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_sizeof] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(1010), + [anon_sym_L_SQUOTE] = ACTIONS(1010), + [anon_sym_u_SQUOTE] = ACTIONS(1010), + [anon_sym_U_SQUOTE] = ACTIONS(1010), + [anon_sym_u8_SQUOTE] = ACTIONS(1010), + [anon_sym_SQUOTE] = ACTIONS(1010), + [anon_sym_L_DQUOTE] = ACTIONS(1010), + [anon_sym_u_DQUOTE] = ACTIONS(1010), + [anon_sym_U_DQUOTE] = ACTIONS(1010), + [anon_sym_u8_DQUOTE] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym_true] = ACTIONS(1008), + [sym_false] = ACTIONS(1008), + [sym_null] = ACTIONS(1008), + [sym_comment] = ACTIONS(3), + }, + [284] = { + [ts_builtin_sym_end] = ACTIONS(1002), + [sym_identifier] = ACTIONS(1000), + [aux_sym_preproc_include_token1] = ACTIONS(1000), + [aux_sym_preproc_def_token1] = ACTIONS(1000), + [aux_sym_preproc_if_token1] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), + [sym_preproc_directive] = ACTIONS(1000), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_typedef] = ACTIONS(1000), + [anon_sym_extern] = ACTIONS(1000), + [anon_sym___attribute__] = ACTIONS(1000), + [anon_sym_LPAREN2] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1002), + [anon_sym_static] = ACTIONS(1000), + [anon_sym_auto] = ACTIONS(1000), + [anon_sym_register] = ACTIONS(1000), + [anon_sym_inline] = ACTIONS(1000), + [anon_sym_const] = ACTIONS(1000), + [anon_sym_volatile] = ACTIONS(1000), + [anon_sym_restrict] = ACTIONS(1000), + [anon_sym__Atomic] = ACTIONS(1000), + [anon_sym_signed] = ACTIONS(1000), + [anon_sym_unsigned] = ACTIONS(1000), + [anon_sym_long] = ACTIONS(1000), + [anon_sym_short] = ACTIONS(1000), + [sym_primitive_type] = ACTIONS(1000), + [anon_sym_enum] = ACTIONS(1000), + [anon_sym_struct] = ACTIONS(1000), + [anon_sym_union] = ACTIONS(1000), + [anon_sym_if] = ACTIONS(1000), + [anon_sym_else] = ACTIONS(1000), + [anon_sym_switch] = ACTIONS(1000), + [anon_sym_case] = ACTIONS(1000), + [anon_sym_default] = ACTIONS(1000), + [anon_sym_while] = ACTIONS(1000), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_for] = ACTIONS(1000), + [anon_sym_return] = ACTIONS(1000), + [anon_sym_break] = ACTIONS(1000), + [anon_sym_continue] = ACTIONS(1000), + [anon_sym_goto] = ACTIONS(1000), + [anon_sym_AMP] = ACTIONS(1002), + [anon_sym_BANG] = ACTIONS(1002), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1000), + [anon_sym_PLUS] = ACTIONS(1000), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_sizeof] = ACTIONS(1000), + [sym_number_literal] = ACTIONS(1002), + [anon_sym_L_SQUOTE] = ACTIONS(1002), + [anon_sym_u_SQUOTE] = ACTIONS(1002), + [anon_sym_U_SQUOTE] = ACTIONS(1002), + [anon_sym_u8_SQUOTE] = ACTIONS(1002), + [anon_sym_SQUOTE] = ACTIONS(1002), + [anon_sym_L_DQUOTE] = ACTIONS(1002), + [anon_sym_u_DQUOTE] = ACTIONS(1002), + [anon_sym_U_DQUOTE] = ACTIONS(1002), + [anon_sym_u8_DQUOTE] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym_true] = ACTIONS(1000), + [sym_false] = ACTIONS(1000), + [sym_null] = ACTIONS(1000), + [sym_comment] = ACTIONS(3), + }, + [285] = { + [sym_identifier] = ACTIONS(1044), + [aux_sym_preproc_include_token1] = ACTIONS(1044), + [aux_sym_preproc_def_token1] = ACTIONS(1044), + [aux_sym_preproc_if_token1] = ACTIONS(1044), + [aux_sym_preproc_if_token2] = ACTIONS(1044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1044), + [sym_preproc_directive] = ACTIONS(1044), + [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_typedef] = ACTIONS(1044), + [anon_sym_extern] = ACTIONS(1044), + [anon_sym___attribute__] = ACTIONS(1044), + [anon_sym_LPAREN2] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_STAR] = ACTIONS(1046), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_auto] = ACTIONS(1044), + [anon_sym_register] = ACTIONS(1044), + [anon_sym_inline] = ACTIONS(1044), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_volatile] = ACTIONS(1044), + [anon_sym_restrict] = ACTIONS(1044), + [anon_sym__Atomic] = ACTIONS(1044), + [anon_sym_signed] = ACTIONS(1044), + [anon_sym_unsigned] = ACTIONS(1044), + [anon_sym_long] = ACTIONS(1044), + [anon_sym_short] = ACTIONS(1044), + [sym_primitive_type] = ACTIONS(1044), + [anon_sym_enum] = ACTIONS(1044), + [anon_sym_struct] = ACTIONS(1044), + [anon_sym_union] = ACTIONS(1044), + [anon_sym_if] = ACTIONS(1044), + [anon_sym_else] = ACTIONS(1044), + [anon_sym_switch] = ACTIONS(1044), + [anon_sym_case] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1044), + [anon_sym_while] = ACTIONS(1044), + [anon_sym_do] = ACTIONS(1044), + [anon_sym_for] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1044), + [anon_sym_break] = ACTIONS(1044), + [anon_sym_continue] = ACTIONS(1044), + [anon_sym_goto] = ACTIONS(1044), + [anon_sym_AMP] = ACTIONS(1046), + [anon_sym_BANG] = ACTIONS(1046), + [anon_sym_TILDE] = ACTIONS(1046), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_DASH_DASH] = ACTIONS(1046), + [anon_sym_PLUS_PLUS] = ACTIONS(1046), + [anon_sym_sizeof] = ACTIONS(1044), + [sym_number_literal] = ACTIONS(1046), + [anon_sym_L_SQUOTE] = ACTIONS(1046), + [anon_sym_u_SQUOTE] = ACTIONS(1046), + [anon_sym_U_SQUOTE] = ACTIONS(1046), + [anon_sym_u8_SQUOTE] = ACTIONS(1046), + [anon_sym_SQUOTE] = ACTIONS(1046), + [anon_sym_L_DQUOTE] = ACTIONS(1046), + [anon_sym_u_DQUOTE] = ACTIONS(1046), + [anon_sym_U_DQUOTE] = ACTIONS(1046), + [anon_sym_u8_DQUOTE] = ACTIONS(1046), + [anon_sym_DQUOTE] = ACTIONS(1046), + [sym_true] = ACTIONS(1044), + [sym_false] = ACTIONS(1044), + [sym_null] = ACTIONS(1044), + [sym_comment] = ACTIONS(3), + }, + [286] = { + [sym_identifier] = ACTIONS(1078), + [aux_sym_preproc_include_token1] = ACTIONS(1078), + [aux_sym_preproc_def_token1] = ACTIONS(1078), + [aux_sym_preproc_if_token1] = ACTIONS(1078), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1078), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1078), + [sym_preproc_directive] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1080), + [anon_sym_typedef] = ACTIONS(1078), + [anon_sym_extern] = ACTIONS(1078), + [anon_sym___attribute__] = ACTIONS(1078), + [anon_sym_LPAREN2] = ACTIONS(1080), + [anon_sym_LBRACE] = ACTIONS(1080), + [anon_sym_RBRACE] = ACTIONS(1080), + [anon_sym_STAR] = ACTIONS(1080), + [anon_sym_static] = ACTIONS(1078), + [anon_sym_auto] = ACTIONS(1078), + [anon_sym_register] = ACTIONS(1078), + [anon_sym_inline] = ACTIONS(1078), + [anon_sym_const] = ACTIONS(1078), + [anon_sym_volatile] = ACTIONS(1078), + [anon_sym_restrict] = ACTIONS(1078), + [anon_sym__Atomic] = ACTIONS(1078), + [anon_sym_signed] = ACTIONS(1078), + [anon_sym_unsigned] = ACTIONS(1078), + [anon_sym_long] = ACTIONS(1078), + [anon_sym_short] = ACTIONS(1078), + [sym_primitive_type] = ACTIONS(1078), + [anon_sym_enum] = ACTIONS(1078), + [anon_sym_struct] = ACTIONS(1078), + [anon_sym_union] = ACTIONS(1078), + [anon_sym_if] = ACTIONS(1078), + [anon_sym_else] = ACTIONS(1078), + [anon_sym_switch] = ACTIONS(1078), + [anon_sym_case] = ACTIONS(1078), + [anon_sym_default] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1078), + [anon_sym_do] = ACTIONS(1078), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_return] = ACTIONS(1078), + [anon_sym_break] = ACTIONS(1078), + [anon_sym_continue] = ACTIONS(1078), + [anon_sym_goto] = ACTIONS(1078), + [anon_sym_AMP] = ACTIONS(1080), + [anon_sym_BANG] = ACTIONS(1080), + [anon_sym_TILDE] = ACTIONS(1080), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1080), + [anon_sym_PLUS_PLUS] = ACTIONS(1080), + [anon_sym_sizeof] = ACTIONS(1078), + [sym_number_literal] = ACTIONS(1080), + [anon_sym_L_SQUOTE] = ACTIONS(1080), + [anon_sym_u_SQUOTE] = ACTIONS(1080), + [anon_sym_U_SQUOTE] = ACTIONS(1080), + [anon_sym_u8_SQUOTE] = ACTIONS(1080), + [anon_sym_SQUOTE] = ACTIONS(1080), + [anon_sym_L_DQUOTE] = ACTIONS(1080), + [anon_sym_u_DQUOTE] = ACTIONS(1080), + [anon_sym_U_DQUOTE] = ACTIONS(1080), + [anon_sym_u8_DQUOTE] = ACTIONS(1080), + [anon_sym_DQUOTE] = ACTIONS(1080), + [sym_true] = ACTIONS(1078), + [sym_false] = ACTIONS(1078), + [sym_null] = ACTIONS(1078), + [sym_comment] = ACTIONS(3), + }, + [287] = { + [ts_builtin_sym_end] = ACTIONS(986), + [sym_identifier] = ACTIONS(984), + [aux_sym_preproc_include_token1] = ACTIONS(984), + [aux_sym_preproc_def_token1] = ACTIONS(984), + [aux_sym_preproc_if_token1] = ACTIONS(984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(984), + [sym_preproc_directive] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_typedef] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym___attribute__] = ACTIONS(984), + [anon_sym_LPAREN2] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_static] = ACTIONS(984), + [anon_sym_auto] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_inline] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [anon_sym_volatile] = ACTIONS(984), + [anon_sym_restrict] = ACTIONS(984), + [anon_sym__Atomic] = ACTIONS(984), + [anon_sym_signed] = ACTIONS(984), + [anon_sym_unsigned] = ACTIONS(984), + [anon_sym_long] = ACTIONS(984), + [anon_sym_short] = ACTIONS(984), + [sym_primitive_type] = ACTIONS(984), + [anon_sym_enum] = ACTIONS(984), + [anon_sym_struct] = ACTIONS(984), + [anon_sym_union] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_switch] = ACTIONS(984), + [anon_sym_case] = ACTIONS(984), + [anon_sym_default] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_goto] = ACTIONS(984), + [anon_sym_AMP] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_TILDE] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym_PLUS_PLUS] = ACTIONS(986), + [anon_sym_sizeof] = ACTIONS(984), + [sym_number_literal] = ACTIONS(986), + [anon_sym_L_SQUOTE] = ACTIONS(986), + [anon_sym_u_SQUOTE] = ACTIONS(986), + [anon_sym_U_SQUOTE] = ACTIONS(986), + [anon_sym_u8_SQUOTE] = ACTIONS(986), + [anon_sym_SQUOTE] = ACTIONS(986), + [anon_sym_L_DQUOTE] = ACTIONS(986), + [anon_sym_u_DQUOTE] = ACTIONS(986), + [anon_sym_U_DQUOTE] = ACTIONS(986), + [anon_sym_u8_DQUOTE] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym_true] = ACTIONS(984), + [sym_false] = ACTIONS(984), + [sym_null] = ACTIONS(984), + [sym_comment] = ACTIONS(3), + }, + [288] = { + [sym_identifier] = ACTIONS(1090), + [aux_sym_preproc_include_token1] = ACTIONS(1090), + [aux_sym_preproc_def_token1] = ACTIONS(1090), + [aux_sym_preproc_if_token1] = ACTIONS(1090), + [aux_sym_preproc_if_token2] = ACTIONS(1090), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1090), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1090), + [sym_preproc_directive] = ACTIONS(1090), + [anon_sym_SEMI] = ACTIONS(1092), + [anon_sym_typedef] = ACTIONS(1090), + [anon_sym_extern] = ACTIONS(1090), + [anon_sym___attribute__] = ACTIONS(1090), + [anon_sym_LPAREN2] = ACTIONS(1092), + [anon_sym_LBRACE] = ACTIONS(1092), + [anon_sym_STAR] = ACTIONS(1092), + [anon_sym_static] = ACTIONS(1090), + [anon_sym_auto] = ACTIONS(1090), + [anon_sym_register] = ACTIONS(1090), + [anon_sym_inline] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_volatile] = ACTIONS(1090), + [anon_sym_restrict] = ACTIONS(1090), + [anon_sym__Atomic] = ACTIONS(1090), + [anon_sym_signed] = ACTIONS(1090), + [anon_sym_unsigned] = ACTIONS(1090), + [anon_sym_long] = ACTIONS(1090), + [anon_sym_short] = ACTIONS(1090), + [sym_primitive_type] = ACTIONS(1090), + [anon_sym_enum] = ACTIONS(1090), + [anon_sym_struct] = ACTIONS(1090), + [anon_sym_union] = ACTIONS(1090), + [anon_sym_if] = ACTIONS(1090), + [anon_sym_else] = ACTIONS(1090), + [anon_sym_switch] = ACTIONS(1090), + [anon_sym_case] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1090), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(1090), + [anon_sym_for] = ACTIONS(1090), + [anon_sym_return] = ACTIONS(1090), + [anon_sym_break] = ACTIONS(1090), + [anon_sym_continue] = ACTIONS(1090), + [anon_sym_goto] = ACTIONS(1090), + [anon_sym_AMP] = ACTIONS(1092), + [anon_sym_BANG] = ACTIONS(1092), + [anon_sym_TILDE] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_DASH_DASH] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1092), + [anon_sym_sizeof] = ACTIONS(1090), + [sym_number_literal] = ACTIONS(1092), + [anon_sym_L_SQUOTE] = ACTIONS(1092), + [anon_sym_u_SQUOTE] = ACTIONS(1092), + [anon_sym_U_SQUOTE] = ACTIONS(1092), + [anon_sym_u8_SQUOTE] = ACTIONS(1092), + [anon_sym_SQUOTE] = ACTIONS(1092), + [anon_sym_L_DQUOTE] = ACTIONS(1092), + [anon_sym_u_DQUOTE] = ACTIONS(1092), + [anon_sym_U_DQUOTE] = ACTIONS(1092), + [anon_sym_u8_DQUOTE] = ACTIONS(1092), + [anon_sym_DQUOTE] = ACTIONS(1092), + [sym_true] = ACTIONS(1090), + [sym_false] = ACTIONS(1090), + [sym_null] = ACTIONS(1090), + [sym_comment] = ACTIONS(3), + }, + [289] = { + [sym_identifier] = ACTIONS(996), + [aux_sym_preproc_include_token1] = ACTIONS(996), + [aux_sym_preproc_def_token1] = ACTIONS(996), + [aux_sym_preproc_if_token1] = ACTIONS(996), + [aux_sym_preproc_ifdef_token1] = ACTIONS(996), + [aux_sym_preproc_ifdef_token2] = ACTIONS(996), + [sym_preproc_directive] = ACTIONS(996), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_typedef] = ACTIONS(996), + [anon_sym_extern] = ACTIONS(996), + [anon_sym___attribute__] = ACTIONS(996), + [anon_sym_LPAREN2] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_RBRACE] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_static] = ACTIONS(996), + [anon_sym_auto] = ACTIONS(996), + [anon_sym_register] = ACTIONS(996), + [anon_sym_inline] = ACTIONS(996), + [anon_sym_const] = ACTIONS(996), + [anon_sym_volatile] = ACTIONS(996), + [anon_sym_restrict] = ACTIONS(996), + [anon_sym__Atomic] = ACTIONS(996), + [anon_sym_signed] = ACTIONS(996), + [anon_sym_unsigned] = ACTIONS(996), + [anon_sym_long] = ACTIONS(996), + [anon_sym_short] = ACTIONS(996), + [sym_primitive_type] = ACTIONS(996), + [anon_sym_enum] = ACTIONS(996), + [anon_sym_struct] = ACTIONS(996), + [anon_sym_union] = ACTIONS(996), + [anon_sym_if] = ACTIONS(996), + [anon_sym_else] = ACTIONS(996), + [anon_sym_switch] = ACTIONS(996), + [anon_sym_case] = ACTIONS(996), + [anon_sym_default] = ACTIONS(996), + [anon_sym_while] = ACTIONS(996), + [anon_sym_do] = ACTIONS(996), + [anon_sym_for] = ACTIONS(996), + [anon_sym_return] = ACTIONS(996), + [anon_sym_break] = ACTIONS(996), + [anon_sym_continue] = ACTIONS(996), + [anon_sym_goto] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_PLUS_PLUS] = ACTIONS(998), + [anon_sym_sizeof] = ACTIONS(996), + [sym_number_literal] = ACTIONS(998), + [anon_sym_L_SQUOTE] = ACTIONS(998), + [anon_sym_u_SQUOTE] = ACTIONS(998), + [anon_sym_U_SQUOTE] = ACTIONS(998), + [anon_sym_u8_SQUOTE] = ACTIONS(998), + [anon_sym_SQUOTE] = ACTIONS(998), + [anon_sym_L_DQUOTE] = ACTIONS(998), + [anon_sym_u_DQUOTE] = ACTIONS(998), + [anon_sym_U_DQUOTE] = ACTIONS(998), + [anon_sym_u8_DQUOTE] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym_true] = ACTIONS(996), + [sym_false] = ACTIONS(996), + [sym_null] = ACTIONS(996), + [sym_comment] = ACTIONS(3), + }, + [290] = { + [sym_identifier] = ACTIONS(1020), + [aux_sym_preproc_include_token1] = ACTIONS(1020), + [aux_sym_preproc_def_token1] = ACTIONS(1020), + [aux_sym_preproc_if_token1] = ACTIONS(1020), + [aux_sym_preproc_if_token2] = ACTIONS(1020), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), + [sym_preproc_directive] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1022), + [anon_sym_typedef] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(1020), + [anon_sym___attribute__] = ACTIONS(1020), + [anon_sym_LPAREN2] = ACTIONS(1022), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(1020), + [anon_sym_auto] = ACTIONS(1020), + [anon_sym_register] = ACTIONS(1020), + [anon_sym_inline] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1020), + [anon_sym_volatile] = ACTIONS(1020), + [anon_sym_restrict] = ACTIONS(1020), + [anon_sym__Atomic] = ACTIONS(1020), + [anon_sym_signed] = ACTIONS(1020), + [anon_sym_unsigned] = ACTIONS(1020), + [anon_sym_long] = ACTIONS(1020), + [anon_sym_short] = ACTIONS(1020), + [sym_primitive_type] = ACTIONS(1020), + [anon_sym_enum] = ACTIONS(1020), + [anon_sym_struct] = ACTIONS(1020), + [anon_sym_union] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_else] = ACTIONS(1020), + [anon_sym_switch] = ACTIONS(1020), + [anon_sym_case] = ACTIONS(1020), + [anon_sym_default] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_goto] = ACTIONS(1020), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1022), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_sizeof] = ACTIONS(1020), + [sym_number_literal] = ACTIONS(1022), + [anon_sym_L_SQUOTE] = ACTIONS(1022), + [anon_sym_u_SQUOTE] = ACTIONS(1022), + [anon_sym_U_SQUOTE] = ACTIONS(1022), + [anon_sym_u8_SQUOTE] = ACTIONS(1022), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_L_DQUOTE] = ACTIONS(1022), + [anon_sym_u_DQUOTE] = ACTIONS(1022), + [anon_sym_U_DQUOTE] = ACTIONS(1022), + [anon_sym_u8_DQUOTE] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1022), + [sym_true] = ACTIONS(1020), + [sym_false] = ACTIONS(1020), + [sym_null] = ACTIONS(1020), + [sym_comment] = ACTIONS(3), + }, + [291] = { + [sym_identifier] = ACTIONS(1048), + [aux_sym_preproc_include_token1] = ACTIONS(1048), + [aux_sym_preproc_def_token1] = ACTIONS(1048), + [aux_sym_preproc_if_token1] = ACTIONS(1048), + [aux_sym_preproc_if_token2] = ACTIONS(1048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1048), + [sym_preproc_directive] = ACTIONS(1048), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_typedef] = ACTIONS(1048), + [anon_sym_extern] = ACTIONS(1048), + [anon_sym___attribute__] = ACTIONS(1048), + [anon_sym_LPAREN2] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_STAR] = ACTIONS(1050), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_auto] = ACTIONS(1048), + [anon_sym_register] = ACTIONS(1048), + [anon_sym_inline] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1048), + [anon_sym_volatile] = ACTIONS(1048), + [anon_sym_restrict] = ACTIONS(1048), + [anon_sym__Atomic] = ACTIONS(1048), + [anon_sym_signed] = ACTIONS(1048), + [anon_sym_unsigned] = ACTIONS(1048), + [anon_sym_long] = ACTIONS(1048), + [anon_sym_short] = ACTIONS(1048), + [sym_primitive_type] = ACTIONS(1048), + [anon_sym_enum] = ACTIONS(1048), + [anon_sym_struct] = ACTIONS(1048), + [anon_sym_union] = ACTIONS(1048), + [anon_sym_if] = ACTIONS(1048), + [anon_sym_else] = ACTIONS(1048), + [anon_sym_switch] = ACTIONS(1048), + [anon_sym_case] = ACTIONS(1048), + [anon_sym_default] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1048), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_goto] = ACTIONS(1048), + [anon_sym_AMP] = ACTIONS(1050), + [anon_sym_BANG] = ACTIONS(1050), + [anon_sym_TILDE] = ACTIONS(1050), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_PLUS_PLUS] = ACTIONS(1050), + [anon_sym_sizeof] = ACTIONS(1048), + [sym_number_literal] = ACTIONS(1050), + [anon_sym_L_SQUOTE] = ACTIONS(1050), + [anon_sym_u_SQUOTE] = ACTIONS(1050), + [anon_sym_U_SQUOTE] = ACTIONS(1050), + [anon_sym_u8_SQUOTE] = ACTIONS(1050), + [anon_sym_SQUOTE] = ACTIONS(1050), + [anon_sym_L_DQUOTE] = ACTIONS(1050), + [anon_sym_u_DQUOTE] = ACTIONS(1050), + [anon_sym_U_DQUOTE] = ACTIONS(1050), + [anon_sym_u8_DQUOTE] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym_true] = ACTIONS(1048), + [sym_false] = ACTIONS(1048), + [sym_null] = ACTIONS(1048), + [sym_comment] = ACTIONS(3), + }, + [292] = { + [sym_identifier] = ACTIONS(1056), + [aux_sym_preproc_include_token1] = ACTIONS(1056), + [aux_sym_preproc_def_token1] = ACTIONS(1056), + [aux_sym_preproc_if_token1] = ACTIONS(1056), + [aux_sym_preproc_if_token2] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1056), + [sym_preproc_directive] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1058), + [anon_sym_typedef] = ACTIONS(1056), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym___attribute__] = ACTIONS(1056), + [anon_sym_LPAREN2] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_static] = ACTIONS(1056), + [anon_sym_auto] = ACTIONS(1056), + [anon_sym_register] = ACTIONS(1056), + [anon_sym_inline] = ACTIONS(1056), + [anon_sym_const] = ACTIONS(1056), + [anon_sym_volatile] = ACTIONS(1056), + [anon_sym_restrict] = ACTIONS(1056), + [anon_sym__Atomic] = ACTIONS(1056), + [anon_sym_signed] = ACTIONS(1056), + [anon_sym_unsigned] = ACTIONS(1056), + [anon_sym_long] = ACTIONS(1056), + [anon_sym_short] = ACTIONS(1056), + [sym_primitive_type] = ACTIONS(1056), + [anon_sym_enum] = ACTIONS(1056), + [anon_sym_struct] = ACTIONS(1056), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_if] = ACTIONS(1056), + [anon_sym_else] = ACTIONS(1056), + [anon_sym_switch] = ACTIONS(1056), + [anon_sym_case] = ACTIONS(1056), + [anon_sym_default] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1056), + [anon_sym_do] = ACTIONS(1056), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_return] = ACTIONS(1056), + [anon_sym_break] = ACTIONS(1056), + [anon_sym_continue] = ACTIONS(1056), + [anon_sym_goto] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_BANG] = ACTIONS(1058), + [anon_sym_TILDE] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1056), + [anon_sym_PLUS] = ACTIONS(1056), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_sizeof] = ACTIONS(1056), + [sym_number_literal] = ACTIONS(1058), + [anon_sym_L_SQUOTE] = ACTIONS(1058), + [anon_sym_u_SQUOTE] = ACTIONS(1058), + [anon_sym_U_SQUOTE] = ACTIONS(1058), + [anon_sym_u8_SQUOTE] = ACTIONS(1058), + [anon_sym_SQUOTE] = ACTIONS(1058), + [anon_sym_L_DQUOTE] = ACTIONS(1058), + [anon_sym_u_DQUOTE] = ACTIONS(1058), + [anon_sym_U_DQUOTE] = ACTIONS(1058), + [anon_sym_u8_DQUOTE] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1058), + [sym_true] = ACTIONS(1056), + [sym_false] = ACTIONS(1056), + [sym_null] = ACTIONS(1056), + [sym_comment] = ACTIONS(3), + }, + [293] = { + [sym_identifier] = ACTIONS(968), + [aux_sym_preproc_include_token1] = ACTIONS(968), + [aux_sym_preproc_def_token1] = ACTIONS(968), + [aux_sym_preproc_if_token1] = ACTIONS(968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(968), + [sym_preproc_directive] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_typedef] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(968), + [anon_sym___attribute__] = ACTIONS(968), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_LBRACE] = ACTIONS(970), + [anon_sym_RBRACE] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(970), + [anon_sym_static] = ACTIONS(968), + [anon_sym_auto] = ACTIONS(968), + [anon_sym_register] = ACTIONS(968), + [anon_sym_inline] = ACTIONS(968), + [anon_sym_const] = ACTIONS(968), + [anon_sym_volatile] = ACTIONS(968), + [anon_sym_restrict] = ACTIONS(968), + [anon_sym__Atomic] = ACTIONS(968), + [anon_sym_signed] = ACTIONS(968), + [anon_sym_unsigned] = ACTIONS(968), + [anon_sym_long] = ACTIONS(968), + [anon_sym_short] = ACTIONS(968), + [sym_primitive_type] = ACTIONS(968), + [anon_sym_enum] = ACTIONS(968), + [anon_sym_struct] = ACTIONS(968), + [anon_sym_union] = ACTIONS(968), + [anon_sym_if] = ACTIONS(968), + [anon_sym_else] = ACTIONS(968), + [anon_sym_switch] = ACTIONS(968), + [anon_sym_case] = ACTIONS(968), + [anon_sym_default] = ACTIONS(968), + [anon_sym_while] = ACTIONS(968), + [anon_sym_do] = ACTIONS(968), + [anon_sym_for] = ACTIONS(968), + [anon_sym_return] = ACTIONS(968), + [anon_sym_break] = ACTIONS(968), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_BANG] = ACTIONS(970), + [anon_sym_TILDE] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_sizeof] = ACTIONS(968), + [sym_number_literal] = ACTIONS(970), + [anon_sym_L_SQUOTE] = ACTIONS(970), + [anon_sym_u_SQUOTE] = ACTIONS(970), + [anon_sym_U_SQUOTE] = ACTIONS(970), + [anon_sym_u8_SQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(970), + [anon_sym_L_DQUOTE] = ACTIONS(970), + [anon_sym_u_DQUOTE] = ACTIONS(970), + [anon_sym_U_DQUOTE] = ACTIONS(970), + [anon_sym_u8_DQUOTE] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(970), + [sym_true] = ACTIONS(968), + [sym_false] = ACTIONS(968), + [sym_null] = ACTIONS(968), + [sym_comment] = ACTIONS(3), + }, + [294] = { + [ts_builtin_sym_end] = ACTIONS(1026), + [sym_identifier] = ACTIONS(1024), + [aux_sym_preproc_include_token1] = ACTIONS(1024), + [aux_sym_preproc_def_token1] = ACTIONS(1024), + [aux_sym_preproc_if_token1] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1024), + [sym_preproc_directive] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_typedef] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1024), + [anon_sym___attribute__] = ACTIONS(1024), + [anon_sym_LPAREN2] = ACTIONS(1026), + [anon_sym_LBRACE] = ACTIONS(1026), + [anon_sym_STAR] = ACTIONS(1026), + [anon_sym_static] = ACTIONS(1024), + [anon_sym_auto] = ACTIONS(1024), + [anon_sym_register] = ACTIONS(1024), + [anon_sym_inline] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_volatile] = ACTIONS(1024), + [anon_sym_restrict] = ACTIONS(1024), + [anon_sym__Atomic] = ACTIONS(1024), + [anon_sym_signed] = ACTIONS(1024), + [anon_sym_unsigned] = ACTIONS(1024), + [anon_sym_long] = ACTIONS(1024), + [anon_sym_short] = ACTIONS(1024), + [sym_primitive_type] = ACTIONS(1024), + [anon_sym_enum] = ACTIONS(1024), + [anon_sym_struct] = ACTIONS(1024), + [anon_sym_union] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_else] = ACTIONS(1024), + [anon_sym_switch] = ACTIONS(1024), + [anon_sym_case] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_goto] = ACTIONS(1024), + [anon_sym_AMP] = ACTIONS(1026), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_TILDE] = ACTIONS(1026), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_sizeof] = ACTIONS(1024), + [sym_number_literal] = ACTIONS(1026), + [anon_sym_L_SQUOTE] = ACTIONS(1026), + [anon_sym_u_SQUOTE] = ACTIONS(1026), + [anon_sym_U_SQUOTE] = ACTIONS(1026), + [anon_sym_u8_SQUOTE] = ACTIONS(1026), + [anon_sym_SQUOTE] = ACTIONS(1026), + [anon_sym_L_DQUOTE] = ACTIONS(1026), + [anon_sym_u_DQUOTE] = ACTIONS(1026), + [anon_sym_U_DQUOTE] = ACTIONS(1026), + [anon_sym_u8_DQUOTE] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(1026), + [sym_true] = ACTIONS(1024), + [sym_false] = ACTIONS(1024), + [sym_null] = ACTIONS(1024), + [sym_comment] = ACTIONS(3), + }, + [295] = { + [sym_identifier] = ACTIONS(1178), + [aux_sym_preproc_include_token1] = ACTIONS(1178), + [aux_sym_preproc_def_token1] = ACTIONS(1178), + [aux_sym_preproc_if_token1] = ACTIONS(1178), + [aux_sym_preproc_if_token2] = ACTIONS(1178), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1178), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1178), + [sym_preproc_directive] = ACTIONS(1178), + [anon_sym_SEMI] = ACTIONS(1180), + [anon_sym_typedef] = ACTIONS(1178), + [anon_sym_extern] = ACTIONS(1178), + [anon_sym___attribute__] = ACTIONS(1178), + [anon_sym_LPAREN2] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(1180), + [anon_sym_STAR] = ACTIONS(1180), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_auto] = ACTIONS(1178), + [anon_sym_register] = ACTIONS(1178), + [anon_sym_inline] = ACTIONS(1178), + [anon_sym_const] = ACTIONS(1178), + [anon_sym_volatile] = ACTIONS(1178), + [anon_sym_restrict] = ACTIONS(1178), + [anon_sym__Atomic] = ACTIONS(1178), + [anon_sym_signed] = ACTIONS(1178), + [anon_sym_unsigned] = ACTIONS(1178), + [anon_sym_long] = ACTIONS(1178), + [anon_sym_short] = ACTIONS(1178), + [sym_primitive_type] = ACTIONS(1178), + [anon_sym_enum] = ACTIONS(1178), + [anon_sym_struct] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), + [anon_sym_if] = ACTIONS(1178), + [anon_sym_switch] = ACTIONS(1178), + [anon_sym_case] = ACTIONS(1178), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_while] = ACTIONS(1178), + [anon_sym_do] = ACTIONS(1178), + [anon_sym_for] = ACTIONS(1178), + [anon_sym_return] = ACTIONS(1178), + [anon_sym_break] = ACTIONS(1178), + [anon_sym_continue] = ACTIONS(1178), + [anon_sym_goto] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1180), + [anon_sym_BANG] = ACTIONS(1180), + [anon_sym_TILDE] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1178), + [anon_sym_PLUS] = ACTIONS(1178), + [anon_sym_DASH_DASH] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1180), + [anon_sym_sizeof] = ACTIONS(1178), + [sym_number_literal] = ACTIONS(1180), + [anon_sym_L_SQUOTE] = ACTIONS(1180), + [anon_sym_u_SQUOTE] = ACTIONS(1180), + [anon_sym_U_SQUOTE] = ACTIONS(1180), + [anon_sym_u8_SQUOTE] = ACTIONS(1180), + [anon_sym_SQUOTE] = ACTIONS(1180), + [anon_sym_L_DQUOTE] = ACTIONS(1180), + [anon_sym_u_DQUOTE] = ACTIONS(1180), + [anon_sym_U_DQUOTE] = ACTIONS(1180), + [anon_sym_u8_DQUOTE] = ACTIONS(1180), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym_true] = ACTIONS(1178), + [sym_false] = ACTIONS(1178), + [sym_null] = ACTIONS(1178), + [sym_comment] = ACTIONS(3), + }, + [296] = { + [sym_identifier] = ACTIONS(1150), + [aux_sym_preproc_include_token1] = ACTIONS(1150), + [aux_sym_preproc_def_token1] = ACTIONS(1150), + [aux_sym_preproc_if_token1] = ACTIONS(1150), + [aux_sym_preproc_if_token2] = ACTIONS(1150), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1150), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1150), + [sym_preproc_directive] = ACTIONS(1150), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym_typedef] = ACTIONS(1150), + [anon_sym_extern] = ACTIONS(1150), + [anon_sym___attribute__] = ACTIONS(1150), + [anon_sym_LPAREN2] = ACTIONS(1152), + [anon_sym_LBRACE] = ACTIONS(1152), + [anon_sym_STAR] = ACTIONS(1152), + [anon_sym_static] = ACTIONS(1150), + [anon_sym_auto] = ACTIONS(1150), + [anon_sym_register] = ACTIONS(1150), + [anon_sym_inline] = ACTIONS(1150), + [anon_sym_const] = ACTIONS(1150), + [anon_sym_volatile] = ACTIONS(1150), + [anon_sym_restrict] = ACTIONS(1150), + [anon_sym__Atomic] = ACTIONS(1150), + [anon_sym_signed] = ACTIONS(1150), + [anon_sym_unsigned] = ACTIONS(1150), + [anon_sym_long] = ACTIONS(1150), + [anon_sym_short] = ACTIONS(1150), + [sym_primitive_type] = ACTIONS(1150), + [anon_sym_enum] = ACTIONS(1150), + [anon_sym_struct] = ACTIONS(1150), + [anon_sym_union] = ACTIONS(1150), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(1150), + [anon_sym_case] = ACTIONS(1150), + [anon_sym_default] = ACTIONS(1150), + [anon_sym_while] = ACTIONS(1150), + [anon_sym_do] = ACTIONS(1150), + [anon_sym_for] = ACTIONS(1150), + [anon_sym_return] = ACTIONS(1150), + [anon_sym_break] = ACTIONS(1150), + [anon_sym_continue] = ACTIONS(1150), + [anon_sym_goto] = ACTIONS(1150), + [anon_sym_AMP] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_TILDE] = ACTIONS(1152), + [anon_sym_DASH] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1150), + [anon_sym_DASH_DASH] = ACTIONS(1152), + [anon_sym_PLUS_PLUS] = ACTIONS(1152), + [anon_sym_sizeof] = ACTIONS(1150), + [sym_number_literal] = ACTIONS(1152), + [anon_sym_L_SQUOTE] = ACTIONS(1152), + [anon_sym_u_SQUOTE] = ACTIONS(1152), + [anon_sym_U_SQUOTE] = ACTIONS(1152), + [anon_sym_u8_SQUOTE] = ACTIONS(1152), + [anon_sym_SQUOTE] = ACTIONS(1152), + [anon_sym_L_DQUOTE] = ACTIONS(1152), + [anon_sym_u_DQUOTE] = ACTIONS(1152), + [anon_sym_U_DQUOTE] = ACTIONS(1152), + [anon_sym_u8_DQUOTE] = ACTIONS(1152), + [anon_sym_DQUOTE] = ACTIONS(1152), + [sym_true] = ACTIONS(1150), + [sym_false] = ACTIONS(1150), + [sym_null] = ACTIONS(1150), + [sym_comment] = ACTIONS(3), + }, + [297] = { + [sym_identifier] = ACTIONS(1146), + [aux_sym_preproc_include_token1] = ACTIONS(1146), + [aux_sym_preproc_def_token1] = ACTIONS(1146), + [aux_sym_preproc_if_token1] = ACTIONS(1146), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1146), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1146), + [sym_preproc_directive] = ACTIONS(1146), + [anon_sym_SEMI] = ACTIONS(1148), + [anon_sym_typedef] = ACTIONS(1146), + [anon_sym_extern] = ACTIONS(1146), + [anon_sym___attribute__] = ACTIONS(1146), + [anon_sym_LPAREN2] = ACTIONS(1148), + [anon_sym_LBRACE] = ACTIONS(1148), + [anon_sym_RBRACE] = ACTIONS(1148), + [anon_sym_STAR] = ACTIONS(1148), + [anon_sym_static] = ACTIONS(1146), + [anon_sym_auto] = ACTIONS(1146), + [anon_sym_register] = ACTIONS(1146), + [anon_sym_inline] = ACTIONS(1146), + [anon_sym_const] = ACTIONS(1146), + [anon_sym_volatile] = ACTIONS(1146), + [anon_sym_restrict] = ACTIONS(1146), + [anon_sym__Atomic] = ACTIONS(1146), + [anon_sym_signed] = ACTIONS(1146), + [anon_sym_unsigned] = ACTIONS(1146), + [anon_sym_long] = ACTIONS(1146), + [anon_sym_short] = ACTIONS(1146), + [sym_primitive_type] = ACTIONS(1146), + [anon_sym_enum] = ACTIONS(1146), + [anon_sym_struct] = ACTIONS(1146), + [anon_sym_union] = ACTIONS(1146), + [anon_sym_if] = ACTIONS(1146), + [anon_sym_switch] = ACTIONS(1146), + [anon_sym_case] = ACTIONS(1146), + [anon_sym_default] = ACTIONS(1146), + [anon_sym_while] = ACTIONS(1146), + [anon_sym_do] = ACTIONS(1146), + [anon_sym_for] = ACTIONS(1146), + [anon_sym_return] = ACTIONS(1146), + [anon_sym_break] = ACTIONS(1146), + [anon_sym_continue] = ACTIONS(1146), + [anon_sym_goto] = ACTIONS(1146), + [anon_sym_AMP] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1146), + [anon_sym_DASH_DASH] = ACTIONS(1148), + [anon_sym_PLUS_PLUS] = ACTIONS(1148), + [anon_sym_sizeof] = ACTIONS(1146), + [sym_number_literal] = ACTIONS(1148), + [anon_sym_L_SQUOTE] = ACTIONS(1148), + [anon_sym_u_SQUOTE] = ACTIONS(1148), + [anon_sym_U_SQUOTE] = ACTIONS(1148), + [anon_sym_u8_SQUOTE] = ACTIONS(1148), + [anon_sym_SQUOTE] = ACTIONS(1148), + [anon_sym_L_DQUOTE] = ACTIONS(1148), + [anon_sym_u_DQUOTE] = ACTIONS(1148), + [anon_sym_U_DQUOTE] = ACTIONS(1148), + [anon_sym_u8_DQUOTE] = ACTIONS(1148), + [anon_sym_DQUOTE] = ACTIONS(1148), + [sym_true] = ACTIONS(1146), + [sym_false] = ACTIONS(1146), + [sym_null] = ACTIONS(1146), + [sym_comment] = ACTIONS(3), + }, + [298] = { + [sym_identifier] = ACTIONS(1150), + [aux_sym_preproc_include_token1] = ACTIONS(1150), + [aux_sym_preproc_def_token1] = ACTIONS(1150), + [aux_sym_preproc_if_token1] = ACTIONS(1150), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1150), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1150), + [sym_preproc_directive] = ACTIONS(1150), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym_typedef] = ACTIONS(1150), + [anon_sym_extern] = ACTIONS(1150), + [anon_sym___attribute__] = ACTIONS(1150), + [anon_sym_LPAREN2] = ACTIONS(1152), + [anon_sym_LBRACE] = ACTIONS(1152), + [anon_sym_RBRACE] = ACTIONS(1152), + [anon_sym_STAR] = ACTIONS(1152), + [anon_sym_static] = ACTIONS(1150), + [anon_sym_auto] = ACTIONS(1150), + [anon_sym_register] = ACTIONS(1150), + [anon_sym_inline] = ACTIONS(1150), + [anon_sym_const] = ACTIONS(1150), + [anon_sym_volatile] = ACTIONS(1150), + [anon_sym_restrict] = ACTIONS(1150), + [anon_sym__Atomic] = ACTIONS(1150), + [anon_sym_signed] = ACTIONS(1150), + [anon_sym_unsigned] = ACTIONS(1150), + [anon_sym_long] = ACTIONS(1150), + [anon_sym_short] = ACTIONS(1150), + [sym_primitive_type] = ACTIONS(1150), + [anon_sym_enum] = ACTIONS(1150), + [anon_sym_struct] = ACTIONS(1150), + [anon_sym_union] = ACTIONS(1150), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(1150), + [anon_sym_case] = ACTIONS(1150), + [anon_sym_default] = ACTIONS(1150), + [anon_sym_while] = ACTIONS(1150), + [anon_sym_do] = ACTIONS(1150), + [anon_sym_for] = ACTIONS(1150), + [anon_sym_return] = ACTIONS(1150), + [anon_sym_break] = ACTIONS(1150), + [anon_sym_continue] = ACTIONS(1150), + [anon_sym_goto] = ACTIONS(1150), + [anon_sym_AMP] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_TILDE] = ACTIONS(1152), + [anon_sym_DASH] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1150), + [anon_sym_DASH_DASH] = ACTIONS(1152), + [anon_sym_PLUS_PLUS] = ACTIONS(1152), + [anon_sym_sizeof] = ACTIONS(1150), + [sym_number_literal] = ACTIONS(1152), + [anon_sym_L_SQUOTE] = ACTIONS(1152), + [anon_sym_u_SQUOTE] = ACTIONS(1152), + [anon_sym_U_SQUOTE] = ACTIONS(1152), + [anon_sym_u8_SQUOTE] = ACTIONS(1152), + [anon_sym_SQUOTE] = ACTIONS(1152), + [anon_sym_L_DQUOTE] = ACTIONS(1152), + [anon_sym_u_DQUOTE] = ACTIONS(1152), + [anon_sym_U_DQUOTE] = ACTIONS(1152), + [anon_sym_u8_DQUOTE] = ACTIONS(1152), + [anon_sym_DQUOTE] = ACTIONS(1152), + [sym_true] = ACTIONS(1150), + [sym_false] = ACTIONS(1150), + [sym_null] = ACTIONS(1150), + [sym_comment] = ACTIONS(3), + }, + [299] = { + [sym_identifier] = ACTIONS(1142), + [aux_sym_preproc_include_token1] = ACTIONS(1142), + [aux_sym_preproc_def_token1] = ACTIONS(1142), + [aux_sym_preproc_if_token1] = ACTIONS(1142), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1142), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1142), + [sym_preproc_directive] = ACTIONS(1142), + [anon_sym_SEMI] = ACTIONS(1144), + [anon_sym_typedef] = ACTIONS(1142), + [anon_sym_extern] = ACTIONS(1142), + [anon_sym___attribute__] = ACTIONS(1142), + [anon_sym_LPAREN2] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(1144), + [anon_sym_RBRACE] = ACTIONS(1144), + [anon_sym_STAR] = ACTIONS(1144), + [anon_sym_static] = ACTIONS(1142), + [anon_sym_auto] = ACTIONS(1142), + [anon_sym_register] = ACTIONS(1142), + [anon_sym_inline] = ACTIONS(1142), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_volatile] = ACTIONS(1142), + [anon_sym_restrict] = ACTIONS(1142), + [anon_sym__Atomic] = ACTIONS(1142), + [anon_sym_signed] = ACTIONS(1142), + [anon_sym_unsigned] = ACTIONS(1142), + [anon_sym_long] = ACTIONS(1142), + [anon_sym_short] = ACTIONS(1142), + [sym_primitive_type] = ACTIONS(1142), + [anon_sym_enum] = ACTIONS(1142), + [anon_sym_struct] = ACTIONS(1142), + [anon_sym_union] = ACTIONS(1142), + [anon_sym_if] = ACTIONS(1142), + [anon_sym_switch] = ACTIONS(1142), + [anon_sym_case] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(1142), + [anon_sym_while] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_break] = ACTIONS(1142), + [anon_sym_continue] = ACTIONS(1142), + [anon_sym_goto] = ACTIONS(1142), + [anon_sym_AMP] = ACTIONS(1144), + [anon_sym_BANG] = ACTIONS(1144), + [anon_sym_TILDE] = ACTIONS(1144), + [anon_sym_DASH] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1142), + [anon_sym_DASH_DASH] = ACTIONS(1144), + [anon_sym_PLUS_PLUS] = ACTIONS(1144), + [anon_sym_sizeof] = ACTIONS(1142), + [sym_number_literal] = ACTIONS(1144), + [anon_sym_L_SQUOTE] = ACTIONS(1144), + [anon_sym_u_SQUOTE] = ACTIONS(1144), + [anon_sym_U_SQUOTE] = ACTIONS(1144), + [anon_sym_u8_SQUOTE] = ACTIONS(1144), + [anon_sym_SQUOTE] = ACTIONS(1144), + [anon_sym_L_DQUOTE] = ACTIONS(1144), + [anon_sym_u_DQUOTE] = ACTIONS(1144), + [anon_sym_U_DQUOTE] = ACTIONS(1144), + [anon_sym_u8_DQUOTE] = ACTIONS(1144), + [anon_sym_DQUOTE] = ACTIONS(1144), + [sym_true] = ACTIONS(1142), + [sym_false] = ACTIONS(1142), + [sym_null] = ACTIONS(1142), + [sym_comment] = ACTIONS(3), + }, + [300] = { + [sym_identifier] = ACTIONS(1138), + [aux_sym_preproc_include_token1] = ACTIONS(1138), + [aux_sym_preproc_def_token1] = ACTIONS(1138), + [aux_sym_preproc_if_token1] = ACTIONS(1138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1138), + [sym_preproc_directive] = ACTIONS(1138), + [anon_sym_SEMI] = ACTIONS(1140), + [anon_sym_typedef] = ACTIONS(1138), + [anon_sym_extern] = ACTIONS(1138), + [anon_sym___attribute__] = ACTIONS(1138), + [anon_sym_LPAREN2] = ACTIONS(1140), + [anon_sym_LBRACE] = ACTIONS(1140), + [anon_sym_RBRACE] = ACTIONS(1140), + [anon_sym_STAR] = ACTIONS(1140), + [anon_sym_static] = ACTIONS(1138), + [anon_sym_auto] = ACTIONS(1138), + [anon_sym_register] = ACTIONS(1138), + [anon_sym_inline] = ACTIONS(1138), + [anon_sym_const] = ACTIONS(1138), + [anon_sym_volatile] = ACTIONS(1138), + [anon_sym_restrict] = ACTIONS(1138), + [anon_sym__Atomic] = ACTIONS(1138), + [anon_sym_signed] = ACTIONS(1138), + [anon_sym_unsigned] = ACTIONS(1138), + [anon_sym_long] = ACTIONS(1138), + [anon_sym_short] = ACTIONS(1138), + [sym_primitive_type] = ACTIONS(1138), + [anon_sym_enum] = ACTIONS(1138), + [anon_sym_struct] = ACTIONS(1138), + [anon_sym_union] = ACTIONS(1138), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_switch] = ACTIONS(1138), + [anon_sym_case] = ACTIONS(1138), + [anon_sym_default] = ACTIONS(1138), + [anon_sym_while] = ACTIONS(1138), + [anon_sym_do] = ACTIONS(1138), + [anon_sym_for] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1138), + [anon_sym_break] = ACTIONS(1138), + [anon_sym_continue] = ACTIONS(1138), + [anon_sym_goto] = ACTIONS(1138), + [anon_sym_AMP] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(1140), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_sizeof] = ACTIONS(1138), + [sym_number_literal] = ACTIONS(1140), + [anon_sym_L_SQUOTE] = ACTIONS(1140), + [anon_sym_u_SQUOTE] = ACTIONS(1140), + [anon_sym_U_SQUOTE] = ACTIONS(1140), + [anon_sym_u8_SQUOTE] = ACTIONS(1140), + [anon_sym_SQUOTE] = ACTIONS(1140), + [anon_sym_L_DQUOTE] = ACTIONS(1140), + [anon_sym_u_DQUOTE] = ACTIONS(1140), + [anon_sym_U_DQUOTE] = ACTIONS(1140), + [anon_sym_u8_DQUOTE] = ACTIONS(1140), + [anon_sym_DQUOTE] = ACTIONS(1140), + [sym_true] = ACTIONS(1138), + [sym_false] = ACTIONS(1138), + [sym_null] = ACTIONS(1138), + [sym_comment] = ACTIONS(3), + }, + [301] = { + [sym_identifier] = ACTIONS(1094), + [aux_sym_preproc_include_token1] = ACTIONS(1094), + [aux_sym_preproc_def_token1] = ACTIONS(1094), + [aux_sym_preproc_if_token1] = ACTIONS(1094), + [aux_sym_preproc_if_token2] = ACTIONS(1094), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1094), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1094), + [sym_preproc_directive] = ACTIONS(1094), + [anon_sym_SEMI] = ACTIONS(1096), + [anon_sym_typedef] = ACTIONS(1094), + [anon_sym_extern] = ACTIONS(1094), + [anon_sym___attribute__] = ACTIONS(1094), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_LBRACE] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1096), + [anon_sym_static] = ACTIONS(1094), + [anon_sym_auto] = ACTIONS(1094), + [anon_sym_register] = ACTIONS(1094), + [anon_sym_inline] = ACTIONS(1094), + [anon_sym_const] = ACTIONS(1094), + [anon_sym_volatile] = ACTIONS(1094), + [anon_sym_restrict] = ACTIONS(1094), + [anon_sym__Atomic] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(1094), + [anon_sym_unsigned] = ACTIONS(1094), + [anon_sym_long] = ACTIONS(1094), + [anon_sym_short] = ACTIONS(1094), + [sym_primitive_type] = ACTIONS(1094), + [anon_sym_enum] = ACTIONS(1094), + [anon_sym_struct] = ACTIONS(1094), + [anon_sym_union] = ACTIONS(1094), + [anon_sym_if] = ACTIONS(1094), + [anon_sym_switch] = ACTIONS(1094), + [anon_sym_case] = ACTIONS(1094), + [anon_sym_default] = ACTIONS(1094), + [anon_sym_while] = ACTIONS(1094), + [anon_sym_do] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1094), + [anon_sym_return] = ACTIONS(1094), + [anon_sym_break] = ACTIONS(1094), + [anon_sym_continue] = ACTIONS(1094), + [anon_sym_goto] = ACTIONS(1094), + [anon_sym_AMP] = ACTIONS(1096), + [anon_sym_BANG] = ACTIONS(1096), + [anon_sym_TILDE] = ACTIONS(1096), + [anon_sym_DASH] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_PLUS_PLUS] = ACTIONS(1096), + [anon_sym_sizeof] = ACTIONS(1094), + [sym_number_literal] = ACTIONS(1096), + [anon_sym_L_SQUOTE] = ACTIONS(1096), + [anon_sym_u_SQUOTE] = ACTIONS(1096), + [anon_sym_U_SQUOTE] = ACTIONS(1096), + [anon_sym_u8_SQUOTE] = ACTIONS(1096), + [anon_sym_SQUOTE] = ACTIONS(1096), + [anon_sym_L_DQUOTE] = ACTIONS(1096), + [anon_sym_u_DQUOTE] = ACTIONS(1096), + [anon_sym_U_DQUOTE] = ACTIONS(1096), + [anon_sym_u8_DQUOTE] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(1096), + [sym_true] = ACTIONS(1094), + [sym_false] = ACTIONS(1094), + [sym_null] = ACTIONS(1094), + [sym_comment] = ACTIONS(3), + }, + [302] = { + [sym_identifier] = ACTIONS(1134), + [aux_sym_preproc_include_token1] = ACTIONS(1134), + [aux_sym_preproc_def_token1] = ACTIONS(1134), + [aux_sym_preproc_if_token1] = ACTIONS(1134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1134), + [sym_preproc_directive] = ACTIONS(1134), + [anon_sym_SEMI] = ACTIONS(1136), + [anon_sym_typedef] = ACTIONS(1134), + [anon_sym_extern] = ACTIONS(1134), + [anon_sym___attribute__] = ACTIONS(1134), + [anon_sym_LPAREN2] = ACTIONS(1136), + [anon_sym_LBRACE] = ACTIONS(1136), + [anon_sym_RBRACE] = ACTIONS(1136), + [anon_sym_STAR] = ACTIONS(1136), + [anon_sym_static] = ACTIONS(1134), + [anon_sym_auto] = ACTIONS(1134), + [anon_sym_register] = ACTIONS(1134), + [anon_sym_inline] = ACTIONS(1134), + [anon_sym_const] = ACTIONS(1134), + [anon_sym_volatile] = ACTIONS(1134), + [anon_sym_restrict] = ACTIONS(1134), + [anon_sym__Atomic] = ACTIONS(1134), + [anon_sym_signed] = ACTIONS(1134), + [anon_sym_unsigned] = ACTIONS(1134), + [anon_sym_long] = ACTIONS(1134), + [anon_sym_short] = ACTIONS(1134), + [sym_primitive_type] = ACTIONS(1134), + [anon_sym_enum] = ACTIONS(1134), + [anon_sym_struct] = ACTIONS(1134), + [anon_sym_union] = ACTIONS(1134), + [anon_sym_if] = ACTIONS(1134), + [anon_sym_switch] = ACTIONS(1134), + [anon_sym_case] = ACTIONS(1134), + [anon_sym_default] = ACTIONS(1134), + [anon_sym_while] = ACTIONS(1134), + [anon_sym_do] = ACTIONS(1134), + [anon_sym_for] = ACTIONS(1134), + [anon_sym_return] = ACTIONS(1134), + [anon_sym_break] = ACTIONS(1134), + [anon_sym_continue] = ACTIONS(1134), + [anon_sym_goto] = ACTIONS(1134), + [anon_sym_AMP] = ACTIONS(1136), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1136), + [anon_sym_sizeof] = ACTIONS(1134), + [sym_number_literal] = ACTIONS(1136), + [anon_sym_L_SQUOTE] = ACTIONS(1136), + [anon_sym_u_SQUOTE] = ACTIONS(1136), + [anon_sym_U_SQUOTE] = ACTIONS(1136), + [anon_sym_u8_SQUOTE] = ACTIONS(1136), + [anon_sym_SQUOTE] = ACTIONS(1136), + [anon_sym_L_DQUOTE] = ACTIONS(1136), + [anon_sym_u_DQUOTE] = ACTIONS(1136), + [anon_sym_U_DQUOTE] = ACTIONS(1136), + [anon_sym_u8_DQUOTE] = ACTIONS(1136), + [anon_sym_DQUOTE] = ACTIONS(1136), + [sym_true] = ACTIONS(1134), + [sym_false] = ACTIONS(1134), + [sym_null] = ACTIONS(1134), + [sym_comment] = ACTIONS(3), + }, + [303] = { + [sym_identifier] = ACTIONS(1178), + [aux_sym_preproc_include_token1] = ACTIONS(1178), + [aux_sym_preproc_def_token1] = ACTIONS(1178), + [aux_sym_preproc_if_token1] = ACTIONS(1178), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1178), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1178), + [sym_preproc_directive] = ACTIONS(1178), + [anon_sym_SEMI] = ACTIONS(1180), + [anon_sym_typedef] = ACTIONS(1178), + [anon_sym_extern] = ACTIONS(1178), + [anon_sym___attribute__] = ACTIONS(1178), + [anon_sym_LPAREN2] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(1180), + [anon_sym_RBRACE] = ACTIONS(1180), + [anon_sym_STAR] = ACTIONS(1180), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_auto] = ACTIONS(1178), + [anon_sym_register] = ACTIONS(1178), + [anon_sym_inline] = ACTIONS(1178), + [anon_sym_const] = ACTIONS(1178), + [anon_sym_volatile] = ACTIONS(1178), + [anon_sym_restrict] = ACTIONS(1178), + [anon_sym__Atomic] = ACTIONS(1178), + [anon_sym_signed] = ACTIONS(1178), + [anon_sym_unsigned] = ACTIONS(1178), + [anon_sym_long] = ACTIONS(1178), + [anon_sym_short] = ACTIONS(1178), + [sym_primitive_type] = ACTIONS(1178), + [anon_sym_enum] = ACTIONS(1178), + [anon_sym_struct] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), + [anon_sym_if] = ACTIONS(1178), + [anon_sym_switch] = ACTIONS(1178), + [anon_sym_case] = ACTIONS(1178), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_while] = ACTIONS(1178), + [anon_sym_do] = ACTIONS(1178), + [anon_sym_for] = ACTIONS(1178), + [anon_sym_return] = ACTIONS(1178), + [anon_sym_break] = ACTIONS(1178), + [anon_sym_continue] = ACTIONS(1178), + [anon_sym_goto] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1180), + [anon_sym_BANG] = ACTIONS(1180), + [anon_sym_TILDE] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1178), + [anon_sym_PLUS] = ACTIONS(1178), + [anon_sym_DASH_DASH] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1180), + [anon_sym_sizeof] = ACTIONS(1178), + [sym_number_literal] = ACTIONS(1180), + [anon_sym_L_SQUOTE] = ACTIONS(1180), + [anon_sym_u_SQUOTE] = ACTIONS(1180), + [anon_sym_U_SQUOTE] = ACTIONS(1180), + [anon_sym_u8_SQUOTE] = ACTIONS(1180), + [anon_sym_SQUOTE] = ACTIONS(1180), + [anon_sym_L_DQUOTE] = ACTIONS(1180), + [anon_sym_u_DQUOTE] = ACTIONS(1180), + [anon_sym_U_DQUOTE] = ACTIONS(1180), + [anon_sym_u8_DQUOTE] = ACTIONS(1180), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym_true] = ACTIONS(1178), + [sym_false] = ACTIONS(1178), + [sym_null] = ACTIONS(1178), + [sym_comment] = ACTIONS(3), + }, + [304] = { + [sym_identifier] = ACTIONS(1174), + [aux_sym_preproc_include_token1] = ACTIONS(1174), + [aux_sym_preproc_def_token1] = ACTIONS(1174), + [aux_sym_preproc_if_token1] = ACTIONS(1174), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1174), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1174), + [sym_preproc_directive] = ACTIONS(1174), + [anon_sym_SEMI] = ACTIONS(1176), + [anon_sym_typedef] = ACTIONS(1174), + [anon_sym_extern] = ACTIONS(1174), + [anon_sym___attribute__] = ACTIONS(1174), + [anon_sym_LPAREN2] = ACTIONS(1176), + [anon_sym_LBRACE] = ACTIONS(1176), + [anon_sym_RBRACE] = ACTIONS(1176), + [anon_sym_STAR] = ACTIONS(1176), + [anon_sym_static] = ACTIONS(1174), + [anon_sym_auto] = ACTIONS(1174), + [anon_sym_register] = ACTIONS(1174), + [anon_sym_inline] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1174), + [anon_sym_volatile] = ACTIONS(1174), + [anon_sym_restrict] = ACTIONS(1174), + [anon_sym__Atomic] = ACTIONS(1174), + [anon_sym_signed] = ACTIONS(1174), + [anon_sym_unsigned] = ACTIONS(1174), + [anon_sym_long] = ACTIONS(1174), + [anon_sym_short] = ACTIONS(1174), + [sym_primitive_type] = ACTIONS(1174), + [anon_sym_enum] = ACTIONS(1174), + [anon_sym_struct] = ACTIONS(1174), + [anon_sym_union] = ACTIONS(1174), + [anon_sym_if] = ACTIONS(1174), + [anon_sym_switch] = ACTIONS(1174), + [anon_sym_case] = ACTIONS(1174), + [anon_sym_default] = ACTIONS(1174), + [anon_sym_while] = ACTIONS(1174), + [anon_sym_do] = ACTIONS(1174), + [anon_sym_for] = ACTIONS(1174), + [anon_sym_return] = ACTIONS(1174), + [anon_sym_break] = ACTIONS(1174), + [anon_sym_continue] = ACTIONS(1174), + [anon_sym_goto] = ACTIONS(1174), + [anon_sym_AMP] = ACTIONS(1176), + [anon_sym_BANG] = ACTIONS(1176), + [anon_sym_TILDE] = ACTIONS(1176), + [anon_sym_DASH] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1174), + [anon_sym_DASH_DASH] = ACTIONS(1176), + [anon_sym_PLUS_PLUS] = ACTIONS(1176), + [anon_sym_sizeof] = ACTIONS(1174), + [sym_number_literal] = ACTIONS(1176), + [anon_sym_L_SQUOTE] = ACTIONS(1176), + [anon_sym_u_SQUOTE] = ACTIONS(1176), + [anon_sym_U_SQUOTE] = ACTIONS(1176), + [anon_sym_u8_SQUOTE] = ACTIONS(1176), + [anon_sym_SQUOTE] = ACTIONS(1176), + [anon_sym_L_DQUOTE] = ACTIONS(1176), + [anon_sym_u_DQUOTE] = ACTIONS(1176), + [anon_sym_U_DQUOTE] = ACTIONS(1176), + [anon_sym_u8_DQUOTE] = ACTIONS(1176), + [anon_sym_DQUOTE] = ACTIONS(1176), + [sym_true] = ACTIONS(1174), + [sym_false] = ACTIONS(1174), + [sym_null] = ACTIONS(1174), + [sym_comment] = ACTIONS(3), + }, + [305] = { + [sym_identifier] = ACTIONS(1126), + [aux_sym_preproc_include_token1] = ACTIONS(1126), + [aux_sym_preproc_def_token1] = ACTIONS(1126), + [aux_sym_preproc_if_token1] = ACTIONS(1126), + [aux_sym_preproc_if_token2] = ACTIONS(1126), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1126), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1126), + [sym_preproc_directive] = ACTIONS(1126), + [anon_sym_SEMI] = ACTIONS(1128), + [anon_sym_typedef] = ACTIONS(1126), + [anon_sym_extern] = ACTIONS(1126), + [anon_sym___attribute__] = ACTIONS(1126), + [anon_sym_LPAREN2] = ACTIONS(1128), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_STAR] = ACTIONS(1128), + [anon_sym_static] = ACTIONS(1126), + [anon_sym_auto] = ACTIONS(1126), + [anon_sym_register] = ACTIONS(1126), + [anon_sym_inline] = ACTIONS(1126), + [anon_sym_const] = ACTIONS(1126), + [anon_sym_volatile] = ACTIONS(1126), + [anon_sym_restrict] = ACTIONS(1126), + [anon_sym__Atomic] = ACTIONS(1126), + [anon_sym_signed] = ACTIONS(1126), + [anon_sym_unsigned] = ACTIONS(1126), + [anon_sym_long] = ACTIONS(1126), + [anon_sym_short] = ACTIONS(1126), + [sym_primitive_type] = ACTIONS(1126), + [anon_sym_enum] = ACTIONS(1126), + [anon_sym_struct] = ACTIONS(1126), + [anon_sym_union] = ACTIONS(1126), + [anon_sym_if] = ACTIONS(1126), + [anon_sym_switch] = ACTIONS(1126), + [anon_sym_case] = ACTIONS(1126), + [anon_sym_default] = ACTIONS(1126), + [anon_sym_while] = ACTIONS(1126), + [anon_sym_do] = ACTIONS(1126), + [anon_sym_for] = ACTIONS(1126), + [anon_sym_return] = ACTIONS(1126), + [anon_sym_break] = ACTIONS(1126), + [anon_sym_continue] = ACTIONS(1126), + [anon_sym_goto] = ACTIONS(1126), + [anon_sym_AMP] = ACTIONS(1128), + [anon_sym_BANG] = ACTIONS(1128), + [anon_sym_TILDE] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1126), + [anon_sym_PLUS] = ACTIONS(1126), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_sizeof] = ACTIONS(1126), + [sym_number_literal] = ACTIONS(1128), + [anon_sym_L_SQUOTE] = ACTIONS(1128), + [anon_sym_u_SQUOTE] = ACTIONS(1128), + [anon_sym_U_SQUOTE] = ACTIONS(1128), + [anon_sym_u8_SQUOTE] = ACTIONS(1128), + [anon_sym_SQUOTE] = ACTIONS(1128), + [anon_sym_L_DQUOTE] = ACTIONS(1128), + [anon_sym_u_DQUOTE] = ACTIONS(1128), + [anon_sym_U_DQUOTE] = ACTIONS(1128), + [anon_sym_u8_DQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE] = ACTIONS(1128), + [sym_true] = ACTIONS(1126), + [sym_false] = ACTIONS(1126), + [sym_null] = ACTIONS(1126), + [sym_comment] = ACTIONS(3), + }, + [306] = { + [sym_identifier] = ACTIONS(1166), + [aux_sym_preproc_include_token1] = ACTIONS(1166), + [aux_sym_preproc_def_token1] = ACTIONS(1166), + [aux_sym_preproc_if_token1] = ACTIONS(1166), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1166), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1166), + [sym_preproc_directive] = ACTIONS(1166), + [anon_sym_SEMI] = ACTIONS(1168), + [anon_sym_typedef] = ACTIONS(1166), + [anon_sym_extern] = ACTIONS(1166), + [anon_sym___attribute__] = ACTIONS(1166), + [anon_sym_LPAREN2] = ACTIONS(1168), + [anon_sym_LBRACE] = ACTIONS(1168), + [anon_sym_RBRACE] = ACTIONS(1168), + [anon_sym_STAR] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(1166), + [anon_sym_auto] = ACTIONS(1166), + [anon_sym_register] = ACTIONS(1166), + [anon_sym_inline] = ACTIONS(1166), + [anon_sym_const] = ACTIONS(1166), + [anon_sym_volatile] = ACTIONS(1166), + [anon_sym_restrict] = ACTIONS(1166), + [anon_sym__Atomic] = ACTIONS(1166), + [anon_sym_signed] = ACTIONS(1166), + [anon_sym_unsigned] = ACTIONS(1166), + [anon_sym_long] = ACTIONS(1166), + [anon_sym_short] = ACTIONS(1166), + [sym_primitive_type] = ACTIONS(1166), + [anon_sym_enum] = ACTIONS(1166), + [anon_sym_struct] = ACTIONS(1166), + [anon_sym_union] = ACTIONS(1166), + [anon_sym_if] = ACTIONS(1166), + [anon_sym_switch] = ACTIONS(1166), + [anon_sym_case] = ACTIONS(1166), + [anon_sym_default] = ACTIONS(1166), + [anon_sym_while] = ACTIONS(1166), + [anon_sym_do] = ACTIONS(1166), + [anon_sym_for] = ACTIONS(1166), + [anon_sym_return] = ACTIONS(1166), + [anon_sym_break] = ACTIONS(1166), + [anon_sym_continue] = ACTIONS(1166), + [anon_sym_goto] = ACTIONS(1166), + [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_BANG] = ACTIONS(1168), + [anon_sym_TILDE] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1168), + [anon_sym_sizeof] = ACTIONS(1166), + [sym_number_literal] = ACTIONS(1168), + [anon_sym_L_SQUOTE] = ACTIONS(1168), + [anon_sym_u_SQUOTE] = ACTIONS(1168), + [anon_sym_U_SQUOTE] = ACTIONS(1168), + [anon_sym_u8_SQUOTE] = ACTIONS(1168), + [anon_sym_SQUOTE] = ACTIONS(1168), + [anon_sym_L_DQUOTE] = ACTIONS(1168), + [anon_sym_u_DQUOTE] = ACTIONS(1168), + [anon_sym_U_DQUOTE] = ACTIONS(1168), + [anon_sym_u8_DQUOTE] = ACTIONS(1168), + [anon_sym_DQUOTE] = ACTIONS(1168), + [sym_true] = ACTIONS(1166), + [sym_false] = ACTIONS(1166), + [sym_null] = ACTIONS(1166), + [sym_comment] = ACTIONS(3), + }, + [307] = { + [sym_identifier] = ACTIONS(1162), + [aux_sym_preproc_include_token1] = ACTIONS(1162), + [aux_sym_preproc_def_token1] = ACTIONS(1162), + [aux_sym_preproc_if_token1] = ACTIONS(1162), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1162), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1162), + [sym_preproc_directive] = ACTIONS(1162), + [anon_sym_SEMI] = ACTIONS(1164), + [anon_sym_typedef] = ACTIONS(1162), + [anon_sym_extern] = ACTIONS(1162), + [anon_sym___attribute__] = ACTIONS(1162), + [anon_sym_LPAREN2] = ACTIONS(1164), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_RBRACE] = ACTIONS(1164), + [anon_sym_STAR] = ACTIONS(1164), + [anon_sym_static] = ACTIONS(1162), + [anon_sym_auto] = ACTIONS(1162), + [anon_sym_register] = ACTIONS(1162), + [anon_sym_inline] = ACTIONS(1162), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_volatile] = ACTIONS(1162), + [anon_sym_restrict] = ACTIONS(1162), + [anon_sym__Atomic] = ACTIONS(1162), + [anon_sym_signed] = ACTIONS(1162), + [anon_sym_unsigned] = ACTIONS(1162), + [anon_sym_long] = ACTIONS(1162), + [anon_sym_short] = ACTIONS(1162), + [sym_primitive_type] = ACTIONS(1162), + [anon_sym_enum] = ACTIONS(1162), + [anon_sym_struct] = ACTIONS(1162), + [anon_sym_union] = ACTIONS(1162), + [anon_sym_if] = ACTIONS(1162), + [anon_sym_switch] = ACTIONS(1162), + [anon_sym_case] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(1162), + [anon_sym_while] = ACTIONS(1162), + [anon_sym_do] = ACTIONS(1162), + [anon_sym_for] = ACTIONS(1162), + [anon_sym_return] = ACTIONS(1162), + [anon_sym_break] = ACTIONS(1162), + [anon_sym_continue] = ACTIONS(1162), + [anon_sym_goto] = ACTIONS(1162), + [anon_sym_AMP] = ACTIONS(1164), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1162), + [anon_sym_PLUS] = ACTIONS(1162), + [anon_sym_DASH_DASH] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1164), + [anon_sym_sizeof] = ACTIONS(1162), + [sym_number_literal] = ACTIONS(1164), + [anon_sym_L_SQUOTE] = ACTIONS(1164), + [anon_sym_u_SQUOTE] = ACTIONS(1164), + [anon_sym_U_SQUOTE] = ACTIONS(1164), + [anon_sym_u8_SQUOTE] = ACTIONS(1164), + [anon_sym_SQUOTE] = ACTIONS(1164), + [anon_sym_L_DQUOTE] = ACTIONS(1164), + [anon_sym_u_DQUOTE] = ACTIONS(1164), + [anon_sym_U_DQUOTE] = ACTIONS(1164), + [anon_sym_u8_DQUOTE] = ACTIONS(1164), + [anon_sym_DQUOTE] = ACTIONS(1164), + [sym_true] = ACTIONS(1162), + [sym_false] = ACTIONS(1162), + [sym_null] = ACTIONS(1162), + [sym_comment] = ACTIONS(3), + }, + [308] = { + [ts_builtin_sym_end] = ACTIONS(1156), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [sym_null] = ACTIONS(1154), + [sym_comment] = ACTIONS(3), + }, + [309] = { + [sym_identifier] = ACTIONS(1126), + [aux_sym_preproc_include_token1] = ACTIONS(1126), + [aux_sym_preproc_def_token1] = ACTIONS(1126), + [aux_sym_preproc_if_token1] = ACTIONS(1126), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1126), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1126), + [sym_preproc_directive] = ACTIONS(1126), + [anon_sym_SEMI] = ACTIONS(1128), + [anon_sym_typedef] = ACTIONS(1126), + [anon_sym_extern] = ACTIONS(1126), + [anon_sym___attribute__] = ACTIONS(1126), + [anon_sym_LPAREN2] = ACTIONS(1128), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_RBRACE] = ACTIONS(1128), + [anon_sym_STAR] = ACTIONS(1128), + [anon_sym_static] = ACTIONS(1126), + [anon_sym_auto] = ACTIONS(1126), + [anon_sym_register] = ACTIONS(1126), + [anon_sym_inline] = ACTIONS(1126), + [anon_sym_const] = ACTIONS(1126), + [anon_sym_volatile] = ACTIONS(1126), + [anon_sym_restrict] = ACTIONS(1126), + [anon_sym__Atomic] = ACTIONS(1126), + [anon_sym_signed] = ACTIONS(1126), + [anon_sym_unsigned] = ACTIONS(1126), + [anon_sym_long] = ACTIONS(1126), + [anon_sym_short] = ACTIONS(1126), + [sym_primitive_type] = ACTIONS(1126), + [anon_sym_enum] = ACTIONS(1126), + [anon_sym_struct] = ACTIONS(1126), + [anon_sym_union] = ACTIONS(1126), + [anon_sym_if] = ACTIONS(1126), + [anon_sym_switch] = ACTIONS(1126), + [anon_sym_case] = ACTIONS(1126), + [anon_sym_default] = ACTIONS(1126), + [anon_sym_while] = ACTIONS(1126), + [anon_sym_do] = ACTIONS(1126), + [anon_sym_for] = ACTIONS(1126), + [anon_sym_return] = ACTIONS(1126), + [anon_sym_break] = ACTIONS(1126), + [anon_sym_continue] = ACTIONS(1126), + [anon_sym_goto] = ACTIONS(1126), + [anon_sym_AMP] = ACTIONS(1128), + [anon_sym_BANG] = ACTIONS(1128), + [anon_sym_TILDE] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1126), + [anon_sym_PLUS] = ACTIONS(1126), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_sizeof] = ACTIONS(1126), + [sym_number_literal] = ACTIONS(1128), + [anon_sym_L_SQUOTE] = ACTIONS(1128), + [anon_sym_u_SQUOTE] = ACTIONS(1128), + [anon_sym_U_SQUOTE] = ACTIONS(1128), + [anon_sym_u8_SQUOTE] = ACTIONS(1128), + [anon_sym_SQUOTE] = ACTIONS(1128), + [anon_sym_L_DQUOTE] = ACTIONS(1128), + [anon_sym_u_DQUOTE] = ACTIONS(1128), + [anon_sym_U_DQUOTE] = ACTIONS(1128), + [anon_sym_u8_DQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE] = ACTIONS(1128), + [sym_true] = ACTIONS(1126), + [sym_false] = ACTIONS(1126), + [sym_null] = ACTIONS(1126), + [sym_comment] = ACTIONS(3), + }, + [310] = { + [ts_builtin_sym_end] = ACTIONS(1164), + [sym_identifier] = ACTIONS(1162), + [aux_sym_preproc_include_token1] = ACTIONS(1162), + [aux_sym_preproc_def_token1] = ACTIONS(1162), + [aux_sym_preproc_if_token1] = ACTIONS(1162), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1162), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1162), + [sym_preproc_directive] = ACTIONS(1162), + [anon_sym_SEMI] = ACTIONS(1164), + [anon_sym_typedef] = ACTIONS(1162), + [anon_sym_extern] = ACTIONS(1162), + [anon_sym___attribute__] = ACTIONS(1162), + [anon_sym_LPAREN2] = ACTIONS(1164), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_STAR] = ACTIONS(1164), + [anon_sym_static] = ACTIONS(1162), + [anon_sym_auto] = ACTIONS(1162), + [anon_sym_register] = ACTIONS(1162), + [anon_sym_inline] = ACTIONS(1162), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_volatile] = ACTIONS(1162), + [anon_sym_restrict] = ACTIONS(1162), + [anon_sym__Atomic] = ACTIONS(1162), + [anon_sym_signed] = ACTIONS(1162), + [anon_sym_unsigned] = ACTIONS(1162), + [anon_sym_long] = ACTIONS(1162), + [anon_sym_short] = ACTIONS(1162), + [sym_primitive_type] = ACTIONS(1162), + [anon_sym_enum] = ACTIONS(1162), + [anon_sym_struct] = ACTIONS(1162), + [anon_sym_union] = ACTIONS(1162), + [anon_sym_if] = ACTIONS(1162), + [anon_sym_switch] = ACTIONS(1162), + [anon_sym_case] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(1162), + [anon_sym_while] = ACTIONS(1162), + [anon_sym_do] = ACTIONS(1162), + [anon_sym_for] = ACTIONS(1162), + [anon_sym_return] = ACTIONS(1162), + [anon_sym_break] = ACTIONS(1162), + [anon_sym_continue] = ACTIONS(1162), + [anon_sym_goto] = ACTIONS(1162), + [anon_sym_AMP] = ACTIONS(1164), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1162), + [anon_sym_PLUS] = ACTIONS(1162), + [anon_sym_DASH_DASH] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1164), + [anon_sym_sizeof] = ACTIONS(1162), + [sym_number_literal] = ACTIONS(1164), + [anon_sym_L_SQUOTE] = ACTIONS(1164), + [anon_sym_u_SQUOTE] = ACTIONS(1164), + [anon_sym_U_SQUOTE] = ACTIONS(1164), + [anon_sym_u8_SQUOTE] = ACTIONS(1164), + [anon_sym_SQUOTE] = ACTIONS(1164), + [anon_sym_L_DQUOTE] = ACTIONS(1164), + [anon_sym_u_DQUOTE] = ACTIONS(1164), + [anon_sym_U_DQUOTE] = ACTIONS(1164), + [anon_sym_u8_DQUOTE] = ACTIONS(1164), + [anon_sym_DQUOTE] = ACTIONS(1164), + [sym_true] = ACTIONS(1162), + [sym_false] = ACTIONS(1162), + [sym_null] = ACTIONS(1162), + [sym_comment] = ACTIONS(3), + }, + [311] = { + [ts_builtin_sym_end] = ACTIONS(1132), + [sym_identifier] = ACTIONS(1130), + [aux_sym_preproc_include_token1] = ACTIONS(1130), + [aux_sym_preproc_def_token1] = ACTIONS(1130), + [aux_sym_preproc_if_token1] = ACTIONS(1130), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1130), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1130), + [sym_preproc_directive] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(1132), + [anon_sym_typedef] = ACTIONS(1130), + [anon_sym_extern] = ACTIONS(1130), + [anon_sym___attribute__] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_STAR] = ACTIONS(1132), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_auto] = ACTIONS(1130), + [anon_sym_register] = ACTIONS(1130), + [anon_sym_inline] = ACTIONS(1130), + [anon_sym_const] = ACTIONS(1130), + [anon_sym_volatile] = ACTIONS(1130), + [anon_sym_restrict] = ACTIONS(1130), + [anon_sym__Atomic] = ACTIONS(1130), + [anon_sym_signed] = ACTIONS(1130), + [anon_sym_unsigned] = ACTIONS(1130), + [anon_sym_long] = ACTIONS(1130), + [anon_sym_short] = ACTIONS(1130), + [sym_primitive_type] = ACTIONS(1130), + [anon_sym_enum] = ACTIONS(1130), + [anon_sym_struct] = ACTIONS(1130), + [anon_sym_union] = ACTIONS(1130), + [anon_sym_if] = ACTIONS(1130), + [anon_sym_switch] = ACTIONS(1130), + [anon_sym_case] = ACTIONS(1130), + [anon_sym_default] = ACTIONS(1130), + [anon_sym_while] = ACTIONS(1130), + [anon_sym_do] = ACTIONS(1130), + [anon_sym_for] = ACTIONS(1130), + [anon_sym_return] = ACTIONS(1130), + [anon_sym_break] = ACTIONS(1130), + [anon_sym_continue] = ACTIONS(1130), + [anon_sym_goto] = ACTIONS(1130), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_BANG] = ACTIONS(1132), + [anon_sym_TILDE] = ACTIONS(1132), + [anon_sym_DASH] = ACTIONS(1130), + [anon_sym_PLUS] = ACTIONS(1130), + [anon_sym_DASH_DASH] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1132), + [anon_sym_sizeof] = ACTIONS(1130), + [sym_number_literal] = ACTIONS(1132), + [anon_sym_L_SQUOTE] = ACTIONS(1132), + [anon_sym_u_SQUOTE] = ACTIONS(1132), + [anon_sym_U_SQUOTE] = ACTIONS(1132), + [anon_sym_u8_SQUOTE] = ACTIONS(1132), + [anon_sym_SQUOTE] = ACTIONS(1132), + [anon_sym_L_DQUOTE] = ACTIONS(1132), + [anon_sym_u_DQUOTE] = ACTIONS(1132), + [anon_sym_U_DQUOTE] = ACTIONS(1132), + [anon_sym_u8_DQUOTE] = ACTIONS(1132), + [anon_sym_DQUOTE] = ACTIONS(1132), + [sym_true] = ACTIONS(1130), + [sym_false] = ACTIONS(1130), + [sym_null] = ACTIONS(1130), + [sym_comment] = ACTIONS(3), + }, + [312] = { + [sym_identifier] = ACTIONS(1102), + [aux_sym_preproc_include_token1] = ACTIONS(1102), + [aux_sym_preproc_def_token1] = ACTIONS(1102), + [aux_sym_preproc_if_token1] = ACTIONS(1102), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1102), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1102), + [sym_preproc_directive] = ACTIONS(1102), + [anon_sym_SEMI] = ACTIONS(1104), + [anon_sym_typedef] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1102), + [anon_sym___attribute__] = ACTIONS(1102), + [anon_sym_LPAREN2] = ACTIONS(1104), + [anon_sym_LBRACE] = ACTIONS(1104), + [anon_sym_RBRACE] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(1104), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_auto] = ACTIONS(1102), + [anon_sym_register] = ACTIONS(1102), + [anon_sym_inline] = ACTIONS(1102), + [anon_sym_const] = ACTIONS(1102), + [anon_sym_volatile] = ACTIONS(1102), + [anon_sym_restrict] = ACTIONS(1102), + [anon_sym__Atomic] = ACTIONS(1102), + [anon_sym_signed] = ACTIONS(1102), + [anon_sym_unsigned] = ACTIONS(1102), + [anon_sym_long] = ACTIONS(1102), + [anon_sym_short] = ACTIONS(1102), + [sym_primitive_type] = ACTIONS(1102), + [anon_sym_enum] = ACTIONS(1102), + [anon_sym_struct] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1102), + [anon_sym_if] = ACTIONS(1102), + [anon_sym_switch] = ACTIONS(1102), + [anon_sym_case] = ACTIONS(1102), + [anon_sym_default] = ACTIONS(1102), + [anon_sym_while] = ACTIONS(1102), + [anon_sym_do] = ACTIONS(1102), + [anon_sym_for] = ACTIONS(1102), + [anon_sym_return] = ACTIONS(1102), + [anon_sym_break] = ACTIONS(1102), + [anon_sym_continue] = ACTIONS(1102), + [anon_sym_goto] = ACTIONS(1102), + [anon_sym_AMP] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(1104), + [anon_sym_TILDE] = ACTIONS(1104), + [anon_sym_DASH] = ACTIONS(1102), + [anon_sym_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1104), + [anon_sym_PLUS_PLUS] = ACTIONS(1104), + [anon_sym_sizeof] = ACTIONS(1102), + [sym_number_literal] = ACTIONS(1104), + [anon_sym_L_SQUOTE] = ACTIONS(1104), + [anon_sym_u_SQUOTE] = ACTIONS(1104), + [anon_sym_U_SQUOTE] = ACTIONS(1104), + [anon_sym_u8_SQUOTE] = ACTIONS(1104), + [anon_sym_SQUOTE] = ACTIONS(1104), + [anon_sym_L_DQUOTE] = ACTIONS(1104), + [anon_sym_u_DQUOTE] = ACTIONS(1104), + [anon_sym_U_DQUOTE] = ACTIONS(1104), + [anon_sym_u8_DQUOTE] = ACTIONS(1104), + [anon_sym_DQUOTE] = ACTIONS(1104), + [sym_true] = ACTIONS(1102), + [sym_false] = ACTIONS(1102), + [sym_null] = ACTIONS(1102), + [sym_comment] = ACTIONS(3), + }, + [313] = { + [sym_identifier] = ACTIONS(1134), + [aux_sym_preproc_include_token1] = ACTIONS(1134), + [aux_sym_preproc_def_token1] = ACTIONS(1134), + [aux_sym_preproc_if_token1] = ACTIONS(1134), + [aux_sym_preproc_if_token2] = ACTIONS(1134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1134), + [sym_preproc_directive] = ACTIONS(1134), + [anon_sym_SEMI] = ACTIONS(1136), + [anon_sym_typedef] = ACTIONS(1134), + [anon_sym_extern] = ACTIONS(1134), + [anon_sym___attribute__] = ACTIONS(1134), + [anon_sym_LPAREN2] = ACTIONS(1136), + [anon_sym_LBRACE] = ACTIONS(1136), + [anon_sym_STAR] = ACTIONS(1136), + [anon_sym_static] = ACTIONS(1134), + [anon_sym_auto] = ACTIONS(1134), + [anon_sym_register] = ACTIONS(1134), + [anon_sym_inline] = ACTIONS(1134), + [anon_sym_const] = ACTIONS(1134), + [anon_sym_volatile] = ACTIONS(1134), + [anon_sym_restrict] = ACTIONS(1134), + [anon_sym__Atomic] = ACTIONS(1134), + [anon_sym_signed] = ACTIONS(1134), + [anon_sym_unsigned] = ACTIONS(1134), + [anon_sym_long] = ACTIONS(1134), + [anon_sym_short] = ACTIONS(1134), + [sym_primitive_type] = ACTIONS(1134), + [anon_sym_enum] = ACTIONS(1134), + [anon_sym_struct] = ACTIONS(1134), + [anon_sym_union] = ACTIONS(1134), + [anon_sym_if] = ACTIONS(1134), + [anon_sym_switch] = ACTIONS(1134), + [anon_sym_case] = ACTIONS(1134), + [anon_sym_default] = ACTIONS(1134), + [anon_sym_while] = ACTIONS(1134), + [anon_sym_do] = ACTIONS(1134), + [anon_sym_for] = ACTIONS(1134), + [anon_sym_return] = ACTIONS(1134), + [anon_sym_break] = ACTIONS(1134), + [anon_sym_continue] = ACTIONS(1134), + [anon_sym_goto] = ACTIONS(1134), + [anon_sym_AMP] = ACTIONS(1136), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1136), + [anon_sym_sizeof] = ACTIONS(1134), + [sym_number_literal] = ACTIONS(1136), + [anon_sym_L_SQUOTE] = ACTIONS(1136), + [anon_sym_u_SQUOTE] = ACTIONS(1136), + [anon_sym_U_SQUOTE] = ACTIONS(1136), + [anon_sym_u8_SQUOTE] = ACTIONS(1136), + [anon_sym_SQUOTE] = ACTIONS(1136), + [anon_sym_L_DQUOTE] = ACTIONS(1136), + [anon_sym_u_DQUOTE] = ACTIONS(1136), + [anon_sym_U_DQUOTE] = ACTIONS(1136), + [anon_sym_u8_DQUOTE] = ACTIONS(1136), + [anon_sym_DQUOTE] = ACTIONS(1136), + [sym_true] = ACTIONS(1134), + [sym_false] = ACTIONS(1134), + [sym_null] = ACTIONS(1134), + [sym_comment] = ACTIONS(3), + }, + [314] = { + [sym_identifier] = ACTIONS(1138), + [aux_sym_preproc_include_token1] = ACTIONS(1138), + [aux_sym_preproc_def_token1] = ACTIONS(1138), + [aux_sym_preproc_if_token1] = ACTIONS(1138), + [aux_sym_preproc_if_token2] = ACTIONS(1138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1138), + [sym_preproc_directive] = ACTIONS(1138), + [anon_sym_SEMI] = ACTIONS(1140), + [anon_sym_typedef] = ACTIONS(1138), + [anon_sym_extern] = ACTIONS(1138), + [anon_sym___attribute__] = ACTIONS(1138), + [anon_sym_LPAREN2] = ACTIONS(1140), + [anon_sym_LBRACE] = ACTIONS(1140), + [anon_sym_STAR] = ACTIONS(1140), + [anon_sym_static] = ACTIONS(1138), + [anon_sym_auto] = ACTIONS(1138), + [anon_sym_register] = ACTIONS(1138), + [anon_sym_inline] = ACTIONS(1138), + [anon_sym_const] = ACTIONS(1138), + [anon_sym_volatile] = ACTIONS(1138), + [anon_sym_restrict] = ACTIONS(1138), + [anon_sym__Atomic] = ACTIONS(1138), + [anon_sym_signed] = ACTIONS(1138), + [anon_sym_unsigned] = ACTIONS(1138), + [anon_sym_long] = ACTIONS(1138), + [anon_sym_short] = ACTIONS(1138), + [sym_primitive_type] = ACTIONS(1138), + [anon_sym_enum] = ACTIONS(1138), + [anon_sym_struct] = ACTIONS(1138), + [anon_sym_union] = ACTIONS(1138), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_switch] = ACTIONS(1138), + [anon_sym_case] = ACTIONS(1138), + [anon_sym_default] = ACTIONS(1138), + [anon_sym_while] = ACTIONS(1138), + [anon_sym_do] = ACTIONS(1138), + [anon_sym_for] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1138), + [anon_sym_break] = ACTIONS(1138), + [anon_sym_continue] = ACTIONS(1138), + [anon_sym_goto] = ACTIONS(1138), + [anon_sym_AMP] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(1140), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_sizeof] = ACTIONS(1138), + [sym_number_literal] = ACTIONS(1140), + [anon_sym_L_SQUOTE] = ACTIONS(1140), + [anon_sym_u_SQUOTE] = ACTIONS(1140), + [anon_sym_U_SQUOTE] = ACTIONS(1140), + [anon_sym_u8_SQUOTE] = ACTIONS(1140), + [anon_sym_SQUOTE] = ACTIONS(1140), + [anon_sym_L_DQUOTE] = ACTIONS(1140), + [anon_sym_u_DQUOTE] = ACTIONS(1140), + [anon_sym_U_DQUOTE] = ACTIONS(1140), + [anon_sym_u8_DQUOTE] = ACTIONS(1140), + [anon_sym_DQUOTE] = ACTIONS(1140), + [sym_true] = ACTIONS(1138), + [sym_false] = ACTIONS(1138), + [sym_null] = ACTIONS(1138), + [sym_comment] = ACTIONS(3), + }, + [315] = { + [ts_builtin_sym_end] = ACTIONS(1104), + [sym_identifier] = ACTIONS(1102), + [aux_sym_preproc_include_token1] = ACTIONS(1102), + [aux_sym_preproc_def_token1] = ACTIONS(1102), + [aux_sym_preproc_if_token1] = ACTIONS(1102), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1102), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1102), + [sym_preproc_directive] = ACTIONS(1102), + [anon_sym_SEMI] = ACTIONS(1104), + [anon_sym_typedef] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1102), + [anon_sym___attribute__] = ACTIONS(1102), + [anon_sym_LPAREN2] = ACTIONS(1104), + [anon_sym_LBRACE] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(1104), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_auto] = ACTIONS(1102), + [anon_sym_register] = ACTIONS(1102), + [anon_sym_inline] = ACTIONS(1102), + [anon_sym_const] = ACTIONS(1102), + [anon_sym_volatile] = ACTIONS(1102), + [anon_sym_restrict] = ACTIONS(1102), + [anon_sym__Atomic] = ACTIONS(1102), + [anon_sym_signed] = ACTIONS(1102), + [anon_sym_unsigned] = ACTIONS(1102), + [anon_sym_long] = ACTIONS(1102), + [anon_sym_short] = ACTIONS(1102), + [sym_primitive_type] = ACTIONS(1102), + [anon_sym_enum] = ACTIONS(1102), + [anon_sym_struct] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1102), + [anon_sym_if] = ACTIONS(1102), + [anon_sym_switch] = ACTIONS(1102), + [anon_sym_case] = ACTIONS(1102), + [anon_sym_default] = ACTIONS(1102), + [anon_sym_while] = ACTIONS(1102), + [anon_sym_do] = ACTIONS(1102), + [anon_sym_for] = ACTIONS(1102), + [anon_sym_return] = ACTIONS(1102), + [anon_sym_break] = ACTIONS(1102), + [anon_sym_continue] = ACTIONS(1102), + [anon_sym_goto] = ACTIONS(1102), + [anon_sym_AMP] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(1104), + [anon_sym_TILDE] = ACTIONS(1104), + [anon_sym_DASH] = ACTIONS(1102), + [anon_sym_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1104), + [anon_sym_PLUS_PLUS] = ACTIONS(1104), + [anon_sym_sizeof] = ACTIONS(1102), + [sym_number_literal] = ACTIONS(1104), + [anon_sym_L_SQUOTE] = ACTIONS(1104), + [anon_sym_u_SQUOTE] = ACTIONS(1104), + [anon_sym_U_SQUOTE] = ACTIONS(1104), + [anon_sym_u8_SQUOTE] = ACTIONS(1104), + [anon_sym_SQUOTE] = ACTIONS(1104), + [anon_sym_L_DQUOTE] = ACTIONS(1104), + [anon_sym_u_DQUOTE] = ACTIONS(1104), + [anon_sym_U_DQUOTE] = ACTIONS(1104), + [anon_sym_u8_DQUOTE] = ACTIONS(1104), + [anon_sym_DQUOTE] = ACTIONS(1104), + [sym_true] = ACTIONS(1102), + [sym_false] = ACTIONS(1102), + [sym_null] = ACTIONS(1102), + [sym_comment] = ACTIONS(3), + }, + [316] = { + [ts_builtin_sym_end] = ACTIONS(1144), + [sym_identifier] = ACTIONS(1142), + [aux_sym_preproc_include_token1] = ACTIONS(1142), + [aux_sym_preproc_def_token1] = ACTIONS(1142), + [aux_sym_preproc_if_token1] = ACTIONS(1142), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1142), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1142), + [sym_preproc_directive] = ACTIONS(1142), + [anon_sym_SEMI] = ACTIONS(1144), + [anon_sym_typedef] = ACTIONS(1142), + [anon_sym_extern] = ACTIONS(1142), + [anon_sym___attribute__] = ACTIONS(1142), + [anon_sym_LPAREN2] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(1144), + [anon_sym_STAR] = ACTIONS(1144), + [anon_sym_static] = ACTIONS(1142), + [anon_sym_auto] = ACTIONS(1142), + [anon_sym_register] = ACTIONS(1142), + [anon_sym_inline] = ACTIONS(1142), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_volatile] = ACTIONS(1142), + [anon_sym_restrict] = ACTIONS(1142), + [anon_sym__Atomic] = ACTIONS(1142), + [anon_sym_signed] = ACTIONS(1142), + [anon_sym_unsigned] = ACTIONS(1142), + [anon_sym_long] = ACTIONS(1142), + [anon_sym_short] = ACTIONS(1142), + [sym_primitive_type] = ACTIONS(1142), + [anon_sym_enum] = ACTIONS(1142), + [anon_sym_struct] = ACTIONS(1142), + [anon_sym_union] = ACTIONS(1142), + [anon_sym_if] = ACTIONS(1142), + [anon_sym_switch] = ACTIONS(1142), + [anon_sym_case] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(1142), + [anon_sym_while] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_break] = ACTIONS(1142), + [anon_sym_continue] = ACTIONS(1142), + [anon_sym_goto] = ACTIONS(1142), + [anon_sym_AMP] = ACTIONS(1144), + [anon_sym_BANG] = ACTIONS(1144), + [anon_sym_TILDE] = ACTIONS(1144), + [anon_sym_DASH] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1142), + [anon_sym_DASH_DASH] = ACTIONS(1144), + [anon_sym_PLUS_PLUS] = ACTIONS(1144), + [anon_sym_sizeof] = ACTIONS(1142), + [sym_number_literal] = ACTIONS(1144), + [anon_sym_L_SQUOTE] = ACTIONS(1144), + [anon_sym_u_SQUOTE] = ACTIONS(1144), + [anon_sym_U_SQUOTE] = ACTIONS(1144), + [anon_sym_u8_SQUOTE] = ACTIONS(1144), + [anon_sym_SQUOTE] = ACTIONS(1144), + [anon_sym_L_DQUOTE] = ACTIONS(1144), + [anon_sym_u_DQUOTE] = ACTIONS(1144), + [anon_sym_U_DQUOTE] = ACTIONS(1144), + [anon_sym_u8_DQUOTE] = ACTIONS(1144), + [anon_sym_DQUOTE] = ACTIONS(1144), + [sym_true] = ACTIONS(1142), + [sym_false] = ACTIONS(1142), + [sym_null] = ACTIONS(1142), + [sym_comment] = ACTIONS(3), + }, + [317] = { + [ts_builtin_sym_end] = ACTIONS(1172), + [sym_identifier] = ACTIONS(1170), + [aux_sym_preproc_include_token1] = ACTIONS(1170), + [aux_sym_preproc_def_token1] = ACTIONS(1170), + [aux_sym_preproc_if_token1] = ACTIONS(1170), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1170), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1170), + [sym_preproc_directive] = ACTIONS(1170), + [anon_sym_SEMI] = ACTIONS(1172), + [anon_sym_typedef] = ACTIONS(1170), + [anon_sym_extern] = ACTIONS(1170), + [anon_sym___attribute__] = ACTIONS(1170), + [anon_sym_LPAREN2] = ACTIONS(1172), + [anon_sym_LBRACE] = ACTIONS(1172), + [anon_sym_STAR] = ACTIONS(1172), + [anon_sym_static] = ACTIONS(1170), + [anon_sym_auto] = ACTIONS(1170), + [anon_sym_register] = ACTIONS(1170), + [anon_sym_inline] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1170), + [anon_sym_volatile] = ACTIONS(1170), + [anon_sym_restrict] = ACTIONS(1170), + [anon_sym__Atomic] = ACTIONS(1170), + [anon_sym_signed] = ACTIONS(1170), + [anon_sym_unsigned] = ACTIONS(1170), + [anon_sym_long] = ACTIONS(1170), + [anon_sym_short] = ACTIONS(1170), + [sym_primitive_type] = ACTIONS(1170), + [anon_sym_enum] = ACTIONS(1170), + [anon_sym_struct] = ACTIONS(1170), + [anon_sym_union] = ACTIONS(1170), + [anon_sym_if] = ACTIONS(1170), + [anon_sym_switch] = ACTIONS(1170), + [anon_sym_case] = ACTIONS(1170), + [anon_sym_default] = ACTIONS(1170), + [anon_sym_while] = ACTIONS(1170), + [anon_sym_do] = ACTIONS(1170), + [anon_sym_for] = ACTIONS(1170), + [anon_sym_return] = ACTIONS(1170), + [anon_sym_break] = ACTIONS(1170), + [anon_sym_continue] = ACTIONS(1170), + [anon_sym_goto] = ACTIONS(1170), + [anon_sym_AMP] = ACTIONS(1172), + [anon_sym_BANG] = ACTIONS(1172), + [anon_sym_TILDE] = ACTIONS(1172), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH_DASH] = ACTIONS(1172), + [anon_sym_PLUS_PLUS] = ACTIONS(1172), + [anon_sym_sizeof] = ACTIONS(1170), + [sym_number_literal] = ACTIONS(1172), + [anon_sym_L_SQUOTE] = ACTIONS(1172), + [anon_sym_u_SQUOTE] = ACTIONS(1172), + [anon_sym_U_SQUOTE] = ACTIONS(1172), + [anon_sym_u8_SQUOTE] = ACTIONS(1172), + [anon_sym_SQUOTE] = ACTIONS(1172), + [anon_sym_L_DQUOTE] = ACTIONS(1172), + [anon_sym_u_DQUOTE] = ACTIONS(1172), + [anon_sym_U_DQUOTE] = ACTIONS(1172), + [anon_sym_u8_DQUOTE] = ACTIONS(1172), + [anon_sym_DQUOTE] = ACTIONS(1172), + [sym_true] = ACTIONS(1170), + [sym_false] = ACTIONS(1170), + [sym_null] = ACTIONS(1170), + [sym_comment] = ACTIONS(3), + }, + [318] = { + [ts_builtin_sym_end] = ACTIONS(1096), + [sym_identifier] = ACTIONS(1094), + [aux_sym_preproc_include_token1] = ACTIONS(1094), + [aux_sym_preproc_def_token1] = ACTIONS(1094), + [aux_sym_preproc_if_token1] = ACTIONS(1094), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1094), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1094), + [sym_preproc_directive] = ACTIONS(1094), + [anon_sym_SEMI] = ACTIONS(1096), + [anon_sym_typedef] = ACTIONS(1094), + [anon_sym_extern] = ACTIONS(1094), + [anon_sym___attribute__] = ACTIONS(1094), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_LBRACE] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1096), + [anon_sym_static] = ACTIONS(1094), + [anon_sym_auto] = ACTIONS(1094), + [anon_sym_register] = ACTIONS(1094), + [anon_sym_inline] = ACTIONS(1094), + [anon_sym_const] = ACTIONS(1094), + [anon_sym_volatile] = ACTIONS(1094), + [anon_sym_restrict] = ACTIONS(1094), + [anon_sym__Atomic] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(1094), + [anon_sym_unsigned] = ACTIONS(1094), + [anon_sym_long] = ACTIONS(1094), + [anon_sym_short] = ACTIONS(1094), + [sym_primitive_type] = ACTIONS(1094), + [anon_sym_enum] = ACTIONS(1094), + [anon_sym_struct] = ACTIONS(1094), + [anon_sym_union] = ACTIONS(1094), + [anon_sym_if] = ACTIONS(1094), + [anon_sym_switch] = ACTIONS(1094), + [anon_sym_case] = ACTIONS(1094), + [anon_sym_default] = ACTIONS(1094), + [anon_sym_while] = ACTIONS(1094), + [anon_sym_do] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1094), + [anon_sym_return] = ACTIONS(1094), + [anon_sym_break] = ACTIONS(1094), + [anon_sym_continue] = ACTIONS(1094), + [anon_sym_goto] = ACTIONS(1094), + [anon_sym_AMP] = ACTIONS(1096), + [anon_sym_BANG] = ACTIONS(1096), + [anon_sym_TILDE] = ACTIONS(1096), + [anon_sym_DASH] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_PLUS_PLUS] = ACTIONS(1096), + [anon_sym_sizeof] = ACTIONS(1094), + [sym_number_literal] = ACTIONS(1096), + [anon_sym_L_SQUOTE] = ACTIONS(1096), + [anon_sym_u_SQUOTE] = ACTIONS(1096), + [anon_sym_U_SQUOTE] = ACTIONS(1096), + [anon_sym_u8_SQUOTE] = ACTIONS(1096), + [anon_sym_SQUOTE] = ACTIONS(1096), + [anon_sym_L_DQUOTE] = ACTIONS(1096), + [anon_sym_u_DQUOTE] = ACTIONS(1096), + [anon_sym_U_DQUOTE] = ACTIONS(1096), + [anon_sym_u8_DQUOTE] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(1096), + [sym_true] = ACTIONS(1094), + [sym_false] = ACTIONS(1094), + [sym_null] = ACTIONS(1094), + [sym_comment] = ACTIONS(3), + }, + [319] = { + [ts_builtin_sym_end] = ACTIONS(1140), + [sym_identifier] = ACTIONS(1138), + [aux_sym_preproc_include_token1] = ACTIONS(1138), + [aux_sym_preproc_def_token1] = ACTIONS(1138), + [aux_sym_preproc_if_token1] = ACTIONS(1138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1138), + [sym_preproc_directive] = ACTIONS(1138), + [anon_sym_SEMI] = ACTIONS(1140), + [anon_sym_typedef] = ACTIONS(1138), + [anon_sym_extern] = ACTIONS(1138), + [anon_sym___attribute__] = ACTIONS(1138), + [anon_sym_LPAREN2] = ACTIONS(1140), + [anon_sym_LBRACE] = ACTIONS(1140), + [anon_sym_STAR] = ACTIONS(1140), + [anon_sym_static] = ACTIONS(1138), + [anon_sym_auto] = ACTIONS(1138), + [anon_sym_register] = ACTIONS(1138), + [anon_sym_inline] = ACTIONS(1138), + [anon_sym_const] = ACTIONS(1138), + [anon_sym_volatile] = ACTIONS(1138), + [anon_sym_restrict] = ACTIONS(1138), + [anon_sym__Atomic] = ACTIONS(1138), + [anon_sym_signed] = ACTIONS(1138), + [anon_sym_unsigned] = ACTIONS(1138), + [anon_sym_long] = ACTIONS(1138), + [anon_sym_short] = ACTIONS(1138), + [sym_primitive_type] = ACTIONS(1138), + [anon_sym_enum] = ACTIONS(1138), + [anon_sym_struct] = ACTIONS(1138), + [anon_sym_union] = ACTIONS(1138), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_switch] = ACTIONS(1138), + [anon_sym_case] = ACTIONS(1138), + [anon_sym_default] = ACTIONS(1138), + [anon_sym_while] = ACTIONS(1138), + [anon_sym_do] = ACTIONS(1138), + [anon_sym_for] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1138), + [anon_sym_break] = ACTIONS(1138), + [anon_sym_continue] = ACTIONS(1138), + [anon_sym_goto] = ACTIONS(1138), + [anon_sym_AMP] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(1140), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_sizeof] = ACTIONS(1138), + [sym_number_literal] = ACTIONS(1140), + [anon_sym_L_SQUOTE] = ACTIONS(1140), + [anon_sym_u_SQUOTE] = ACTIONS(1140), + [anon_sym_U_SQUOTE] = ACTIONS(1140), + [anon_sym_u8_SQUOTE] = ACTIONS(1140), + [anon_sym_SQUOTE] = ACTIONS(1140), + [anon_sym_L_DQUOTE] = ACTIONS(1140), + [anon_sym_u_DQUOTE] = ACTIONS(1140), + [anon_sym_U_DQUOTE] = ACTIONS(1140), + [anon_sym_u8_DQUOTE] = ACTIONS(1140), + [anon_sym_DQUOTE] = ACTIONS(1140), + [sym_true] = ACTIONS(1138), + [sym_false] = ACTIONS(1138), + [sym_null] = ACTIONS(1138), + [sym_comment] = ACTIONS(3), + }, + [320] = { + [ts_builtin_sym_end] = ACTIONS(1136), + [sym_identifier] = ACTIONS(1134), + [aux_sym_preproc_include_token1] = ACTIONS(1134), + [aux_sym_preproc_def_token1] = ACTIONS(1134), + [aux_sym_preproc_if_token1] = ACTIONS(1134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1134), + [sym_preproc_directive] = ACTIONS(1134), + [anon_sym_SEMI] = ACTIONS(1136), + [anon_sym_typedef] = ACTIONS(1134), + [anon_sym_extern] = ACTIONS(1134), + [anon_sym___attribute__] = ACTIONS(1134), + [anon_sym_LPAREN2] = ACTIONS(1136), + [anon_sym_LBRACE] = ACTIONS(1136), + [anon_sym_STAR] = ACTIONS(1136), + [anon_sym_static] = ACTIONS(1134), + [anon_sym_auto] = ACTIONS(1134), + [anon_sym_register] = ACTIONS(1134), + [anon_sym_inline] = ACTIONS(1134), + [anon_sym_const] = ACTIONS(1134), + [anon_sym_volatile] = ACTIONS(1134), + [anon_sym_restrict] = ACTIONS(1134), + [anon_sym__Atomic] = ACTIONS(1134), + [anon_sym_signed] = ACTIONS(1134), + [anon_sym_unsigned] = ACTIONS(1134), + [anon_sym_long] = ACTIONS(1134), + [anon_sym_short] = ACTIONS(1134), + [sym_primitive_type] = ACTIONS(1134), + [anon_sym_enum] = ACTIONS(1134), + [anon_sym_struct] = ACTIONS(1134), + [anon_sym_union] = ACTIONS(1134), + [anon_sym_if] = ACTIONS(1134), + [anon_sym_switch] = ACTIONS(1134), + [anon_sym_case] = ACTIONS(1134), + [anon_sym_default] = ACTIONS(1134), + [anon_sym_while] = ACTIONS(1134), + [anon_sym_do] = ACTIONS(1134), + [anon_sym_for] = ACTIONS(1134), + [anon_sym_return] = ACTIONS(1134), + [anon_sym_break] = ACTIONS(1134), + [anon_sym_continue] = ACTIONS(1134), + [anon_sym_goto] = ACTIONS(1134), + [anon_sym_AMP] = ACTIONS(1136), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1136), + [anon_sym_sizeof] = ACTIONS(1134), + [sym_number_literal] = ACTIONS(1136), + [anon_sym_L_SQUOTE] = ACTIONS(1136), + [anon_sym_u_SQUOTE] = ACTIONS(1136), + [anon_sym_U_SQUOTE] = ACTIONS(1136), + [anon_sym_u8_SQUOTE] = ACTIONS(1136), + [anon_sym_SQUOTE] = ACTIONS(1136), + [anon_sym_L_DQUOTE] = ACTIONS(1136), + [anon_sym_u_DQUOTE] = ACTIONS(1136), + [anon_sym_U_DQUOTE] = ACTIONS(1136), + [anon_sym_u8_DQUOTE] = ACTIONS(1136), + [anon_sym_DQUOTE] = ACTIONS(1136), + [sym_true] = ACTIONS(1134), + [sym_false] = ACTIONS(1134), + [sym_null] = ACTIONS(1134), + [sym_comment] = ACTIONS(3), + }, + [321] = { + [sym_identifier] = ACTIONS(1170), + [aux_sym_preproc_include_token1] = ACTIONS(1170), + [aux_sym_preproc_def_token1] = ACTIONS(1170), + [aux_sym_preproc_if_token1] = ACTIONS(1170), + [aux_sym_preproc_if_token2] = ACTIONS(1170), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1170), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1170), + [sym_preproc_directive] = ACTIONS(1170), + [anon_sym_SEMI] = ACTIONS(1172), + [anon_sym_typedef] = ACTIONS(1170), + [anon_sym_extern] = ACTIONS(1170), + [anon_sym___attribute__] = ACTIONS(1170), + [anon_sym_LPAREN2] = ACTIONS(1172), + [anon_sym_LBRACE] = ACTIONS(1172), + [anon_sym_STAR] = ACTIONS(1172), + [anon_sym_static] = ACTIONS(1170), + [anon_sym_auto] = ACTIONS(1170), + [anon_sym_register] = ACTIONS(1170), + [anon_sym_inline] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1170), + [anon_sym_volatile] = ACTIONS(1170), + [anon_sym_restrict] = ACTIONS(1170), + [anon_sym__Atomic] = ACTIONS(1170), + [anon_sym_signed] = ACTIONS(1170), + [anon_sym_unsigned] = ACTIONS(1170), + [anon_sym_long] = ACTIONS(1170), + [anon_sym_short] = ACTIONS(1170), + [sym_primitive_type] = ACTIONS(1170), + [anon_sym_enum] = ACTIONS(1170), + [anon_sym_struct] = ACTIONS(1170), + [anon_sym_union] = ACTIONS(1170), + [anon_sym_if] = ACTIONS(1170), + [anon_sym_switch] = ACTIONS(1170), + [anon_sym_case] = ACTIONS(1170), + [anon_sym_default] = ACTIONS(1170), + [anon_sym_while] = ACTIONS(1170), + [anon_sym_do] = ACTIONS(1170), + [anon_sym_for] = ACTIONS(1170), + [anon_sym_return] = ACTIONS(1170), + [anon_sym_break] = ACTIONS(1170), + [anon_sym_continue] = ACTIONS(1170), + [anon_sym_goto] = ACTIONS(1170), + [anon_sym_AMP] = ACTIONS(1172), + [anon_sym_BANG] = ACTIONS(1172), + [anon_sym_TILDE] = ACTIONS(1172), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH_DASH] = ACTIONS(1172), + [anon_sym_PLUS_PLUS] = ACTIONS(1172), + [anon_sym_sizeof] = ACTIONS(1170), + [sym_number_literal] = ACTIONS(1172), + [anon_sym_L_SQUOTE] = ACTIONS(1172), + [anon_sym_u_SQUOTE] = ACTIONS(1172), + [anon_sym_U_SQUOTE] = ACTIONS(1172), + [anon_sym_u8_SQUOTE] = ACTIONS(1172), + [anon_sym_SQUOTE] = ACTIONS(1172), + [anon_sym_L_DQUOTE] = ACTIONS(1172), + [anon_sym_u_DQUOTE] = ACTIONS(1172), + [anon_sym_U_DQUOTE] = ACTIONS(1172), + [anon_sym_u8_DQUOTE] = ACTIONS(1172), + [anon_sym_DQUOTE] = ACTIONS(1172), + [sym_true] = ACTIONS(1170), + [sym_false] = ACTIONS(1170), + [sym_null] = ACTIONS(1170), + [sym_comment] = ACTIONS(3), + }, + [322] = { + [sym_identifier] = ACTIONS(1106), + [aux_sym_preproc_include_token1] = ACTIONS(1106), + [aux_sym_preproc_def_token1] = ACTIONS(1106), + [aux_sym_preproc_if_token1] = ACTIONS(1106), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1106), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1106), + [sym_preproc_directive] = ACTIONS(1106), + [anon_sym_SEMI] = ACTIONS(1108), + [anon_sym_typedef] = ACTIONS(1106), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym___attribute__] = ACTIONS(1106), + [anon_sym_LPAREN2] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_RBRACE] = ACTIONS(1108), + [anon_sym_STAR] = ACTIONS(1108), + [anon_sym_static] = ACTIONS(1106), + [anon_sym_auto] = ACTIONS(1106), + [anon_sym_register] = ACTIONS(1106), + [anon_sym_inline] = ACTIONS(1106), + [anon_sym_const] = ACTIONS(1106), + [anon_sym_volatile] = ACTIONS(1106), + [anon_sym_restrict] = ACTIONS(1106), + [anon_sym__Atomic] = ACTIONS(1106), + [anon_sym_signed] = ACTIONS(1106), + [anon_sym_unsigned] = ACTIONS(1106), + [anon_sym_long] = ACTIONS(1106), + [anon_sym_short] = ACTIONS(1106), + [sym_primitive_type] = ACTIONS(1106), + [anon_sym_enum] = ACTIONS(1106), + [anon_sym_struct] = ACTIONS(1106), + [anon_sym_union] = ACTIONS(1106), + [anon_sym_if] = ACTIONS(1106), + [anon_sym_switch] = ACTIONS(1106), + [anon_sym_case] = ACTIONS(1106), + [anon_sym_default] = ACTIONS(1106), + [anon_sym_while] = ACTIONS(1106), + [anon_sym_do] = ACTIONS(1106), + [anon_sym_for] = ACTIONS(1106), + [anon_sym_return] = ACTIONS(1106), + [anon_sym_break] = ACTIONS(1106), + [anon_sym_continue] = ACTIONS(1106), + [anon_sym_goto] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1108), + [anon_sym_BANG] = ACTIONS(1108), + [anon_sym_TILDE] = ACTIONS(1108), + [anon_sym_DASH] = ACTIONS(1106), + [anon_sym_PLUS] = ACTIONS(1106), + [anon_sym_DASH_DASH] = ACTIONS(1108), + [anon_sym_PLUS_PLUS] = ACTIONS(1108), + [anon_sym_sizeof] = ACTIONS(1106), + [sym_number_literal] = ACTIONS(1108), + [anon_sym_L_SQUOTE] = ACTIONS(1108), + [anon_sym_u_SQUOTE] = ACTIONS(1108), + [anon_sym_U_SQUOTE] = ACTIONS(1108), + [anon_sym_u8_SQUOTE] = ACTIONS(1108), + [anon_sym_SQUOTE] = ACTIONS(1108), + [anon_sym_L_DQUOTE] = ACTIONS(1108), + [anon_sym_u_DQUOTE] = ACTIONS(1108), + [anon_sym_U_DQUOTE] = ACTIONS(1108), + [anon_sym_u8_DQUOTE] = ACTIONS(1108), + [anon_sym_DQUOTE] = ACTIONS(1108), + [sym_true] = ACTIONS(1106), + [sym_false] = ACTIONS(1106), + [sym_null] = ACTIONS(1106), + [sym_comment] = ACTIONS(3), + }, + [323] = { + [sym_identifier] = ACTIONS(1158), + [aux_sym_preproc_include_token1] = ACTIONS(1158), + [aux_sym_preproc_def_token1] = ACTIONS(1158), + [aux_sym_preproc_if_token1] = ACTIONS(1158), + [aux_sym_preproc_if_token2] = ACTIONS(1158), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1158), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1158), + [sym_preproc_directive] = ACTIONS(1158), + [anon_sym_SEMI] = ACTIONS(1160), + [anon_sym_typedef] = ACTIONS(1158), + [anon_sym_extern] = ACTIONS(1158), + [anon_sym___attribute__] = ACTIONS(1158), + [anon_sym_LPAREN2] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(1160), + [anon_sym_STAR] = ACTIONS(1160), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_auto] = ACTIONS(1158), + [anon_sym_register] = ACTIONS(1158), + [anon_sym_inline] = ACTIONS(1158), + [anon_sym_const] = ACTIONS(1158), + [anon_sym_volatile] = ACTIONS(1158), + [anon_sym_restrict] = ACTIONS(1158), + [anon_sym__Atomic] = ACTIONS(1158), + [anon_sym_signed] = ACTIONS(1158), + [anon_sym_unsigned] = ACTIONS(1158), + [anon_sym_long] = ACTIONS(1158), + [anon_sym_short] = ACTIONS(1158), + [sym_primitive_type] = ACTIONS(1158), + [anon_sym_enum] = ACTIONS(1158), + [anon_sym_struct] = ACTIONS(1158), + [anon_sym_union] = ACTIONS(1158), + [anon_sym_if] = ACTIONS(1158), + [anon_sym_switch] = ACTIONS(1158), + [anon_sym_case] = ACTIONS(1158), + [anon_sym_default] = ACTIONS(1158), + [anon_sym_while] = ACTIONS(1158), + [anon_sym_do] = ACTIONS(1158), + [anon_sym_for] = ACTIONS(1158), + [anon_sym_return] = ACTIONS(1158), + [anon_sym_break] = ACTIONS(1158), + [anon_sym_continue] = ACTIONS(1158), + [anon_sym_goto] = ACTIONS(1158), + [anon_sym_AMP] = ACTIONS(1160), + [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_DASH] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1158), + [anon_sym_DASH_DASH] = ACTIONS(1160), + [anon_sym_PLUS_PLUS] = ACTIONS(1160), + [anon_sym_sizeof] = ACTIONS(1158), + [sym_number_literal] = ACTIONS(1160), + [anon_sym_L_SQUOTE] = ACTIONS(1160), + [anon_sym_u_SQUOTE] = ACTIONS(1160), + [anon_sym_U_SQUOTE] = ACTIONS(1160), + [anon_sym_u8_SQUOTE] = ACTIONS(1160), + [anon_sym_SQUOTE] = ACTIONS(1160), + [anon_sym_L_DQUOTE] = ACTIONS(1160), + [anon_sym_u_DQUOTE] = ACTIONS(1160), + [anon_sym_U_DQUOTE] = ACTIONS(1160), + [anon_sym_u8_DQUOTE] = ACTIONS(1160), + [anon_sym_DQUOTE] = ACTIONS(1160), + [sym_true] = ACTIONS(1158), + [sym_false] = ACTIONS(1158), + [sym_null] = ACTIONS(1158), + [sym_comment] = ACTIONS(3), + }, + [324] = { + [sym_identifier] = ACTIONS(1122), + [aux_sym_preproc_include_token1] = ACTIONS(1122), + [aux_sym_preproc_def_token1] = ACTIONS(1122), + [aux_sym_preproc_if_token1] = ACTIONS(1122), + [aux_sym_preproc_if_token2] = ACTIONS(1122), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1122), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1122), + [sym_preproc_directive] = ACTIONS(1122), + [anon_sym_SEMI] = ACTIONS(1124), + [anon_sym_typedef] = ACTIONS(1122), + [anon_sym_extern] = ACTIONS(1122), + [anon_sym___attribute__] = ACTIONS(1122), + [anon_sym_LPAREN2] = ACTIONS(1124), + [anon_sym_LBRACE] = ACTIONS(1124), + [anon_sym_STAR] = ACTIONS(1124), + [anon_sym_static] = ACTIONS(1122), + [anon_sym_auto] = ACTIONS(1122), + [anon_sym_register] = ACTIONS(1122), + [anon_sym_inline] = ACTIONS(1122), + [anon_sym_const] = ACTIONS(1122), + [anon_sym_volatile] = ACTIONS(1122), + [anon_sym_restrict] = ACTIONS(1122), + [anon_sym__Atomic] = ACTIONS(1122), + [anon_sym_signed] = ACTIONS(1122), + [anon_sym_unsigned] = ACTIONS(1122), + [anon_sym_long] = ACTIONS(1122), + [anon_sym_short] = ACTIONS(1122), + [sym_primitive_type] = ACTIONS(1122), + [anon_sym_enum] = ACTIONS(1122), + [anon_sym_struct] = ACTIONS(1122), + [anon_sym_union] = ACTIONS(1122), + [anon_sym_if] = ACTIONS(1122), + [anon_sym_switch] = ACTIONS(1122), + [anon_sym_case] = ACTIONS(1122), + [anon_sym_default] = ACTIONS(1122), + [anon_sym_while] = ACTIONS(1122), + [anon_sym_do] = ACTIONS(1122), + [anon_sym_for] = ACTIONS(1122), + [anon_sym_return] = ACTIONS(1122), + [anon_sym_break] = ACTIONS(1122), + [anon_sym_continue] = ACTIONS(1122), + [anon_sym_goto] = ACTIONS(1122), + [anon_sym_AMP] = ACTIONS(1124), + [anon_sym_BANG] = ACTIONS(1124), + [anon_sym_TILDE] = ACTIONS(1124), + [anon_sym_DASH] = ACTIONS(1122), + [anon_sym_PLUS] = ACTIONS(1122), + [anon_sym_DASH_DASH] = ACTIONS(1124), + [anon_sym_PLUS_PLUS] = ACTIONS(1124), + [anon_sym_sizeof] = ACTIONS(1122), + [sym_number_literal] = ACTIONS(1124), + [anon_sym_L_SQUOTE] = ACTIONS(1124), + [anon_sym_u_SQUOTE] = ACTIONS(1124), + [anon_sym_U_SQUOTE] = ACTIONS(1124), + [anon_sym_u8_SQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1124), + [anon_sym_L_DQUOTE] = ACTIONS(1124), + [anon_sym_u_DQUOTE] = ACTIONS(1124), + [anon_sym_U_DQUOTE] = ACTIONS(1124), + [anon_sym_u8_DQUOTE] = ACTIONS(1124), + [anon_sym_DQUOTE] = ACTIONS(1124), + [sym_true] = ACTIONS(1122), + [sym_false] = ACTIONS(1122), + [sym_null] = ACTIONS(1122), + [sym_comment] = ACTIONS(3), + }, + [325] = { + [sym_identifier] = ACTIONS(1106), + [aux_sym_preproc_include_token1] = ACTIONS(1106), + [aux_sym_preproc_def_token1] = ACTIONS(1106), + [aux_sym_preproc_if_token1] = ACTIONS(1106), + [aux_sym_preproc_if_token2] = ACTIONS(1106), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1106), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1106), + [sym_preproc_directive] = ACTIONS(1106), + [anon_sym_SEMI] = ACTIONS(1108), + [anon_sym_typedef] = ACTIONS(1106), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym___attribute__] = ACTIONS(1106), + [anon_sym_LPAREN2] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_STAR] = ACTIONS(1108), + [anon_sym_static] = ACTIONS(1106), + [anon_sym_auto] = ACTIONS(1106), + [anon_sym_register] = ACTIONS(1106), + [anon_sym_inline] = ACTIONS(1106), + [anon_sym_const] = ACTIONS(1106), + [anon_sym_volatile] = ACTIONS(1106), + [anon_sym_restrict] = ACTIONS(1106), + [anon_sym__Atomic] = ACTIONS(1106), + [anon_sym_signed] = ACTIONS(1106), + [anon_sym_unsigned] = ACTIONS(1106), + [anon_sym_long] = ACTIONS(1106), + [anon_sym_short] = ACTIONS(1106), + [sym_primitive_type] = ACTIONS(1106), + [anon_sym_enum] = ACTIONS(1106), + [anon_sym_struct] = ACTIONS(1106), + [anon_sym_union] = ACTIONS(1106), + [anon_sym_if] = ACTIONS(1106), + [anon_sym_switch] = ACTIONS(1106), + [anon_sym_case] = ACTIONS(1106), + [anon_sym_default] = ACTIONS(1106), + [anon_sym_while] = ACTIONS(1106), + [anon_sym_do] = ACTIONS(1106), + [anon_sym_for] = ACTIONS(1106), + [anon_sym_return] = ACTIONS(1106), + [anon_sym_break] = ACTIONS(1106), + [anon_sym_continue] = ACTIONS(1106), + [anon_sym_goto] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1108), + [anon_sym_BANG] = ACTIONS(1108), + [anon_sym_TILDE] = ACTIONS(1108), + [anon_sym_DASH] = ACTIONS(1106), + [anon_sym_PLUS] = ACTIONS(1106), + [anon_sym_DASH_DASH] = ACTIONS(1108), + [anon_sym_PLUS_PLUS] = ACTIONS(1108), + [anon_sym_sizeof] = ACTIONS(1106), + [sym_number_literal] = ACTIONS(1108), + [anon_sym_L_SQUOTE] = ACTIONS(1108), + [anon_sym_u_SQUOTE] = ACTIONS(1108), + [anon_sym_U_SQUOTE] = ACTIONS(1108), + [anon_sym_u8_SQUOTE] = ACTIONS(1108), + [anon_sym_SQUOTE] = ACTIONS(1108), + [anon_sym_L_DQUOTE] = ACTIONS(1108), + [anon_sym_u_DQUOTE] = ACTIONS(1108), + [anon_sym_U_DQUOTE] = ACTIONS(1108), + [anon_sym_u8_DQUOTE] = ACTIONS(1108), + [anon_sym_DQUOTE] = ACTIONS(1108), + [sym_true] = ACTIONS(1106), + [sym_false] = ACTIONS(1106), + [sym_null] = ACTIONS(1106), + [sym_comment] = ACTIONS(3), + }, + [326] = { + [sym_identifier] = ACTIONS(1110), + [aux_sym_preproc_include_token1] = ACTIONS(1110), + [aux_sym_preproc_def_token1] = ACTIONS(1110), + [aux_sym_preproc_if_token1] = ACTIONS(1110), + [aux_sym_preproc_if_token2] = ACTIONS(1110), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1110), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1110), + [sym_preproc_directive] = ACTIONS(1110), + [anon_sym_SEMI] = ACTIONS(1112), + [anon_sym_typedef] = ACTIONS(1110), + [anon_sym_extern] = ACTIONS(1110), + [anon_sym___attribute__] = ACTIONS(1110), + [anon_sym_LPAREN2] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1112), + [anon_sym_STAR] = ACTIONS(1112), + [anon_sym_static] = ACTIONS(1110), + [anon_sym_auto] = ACTIONS(1110), + [anon_sym_register] = ACTIONS(1110), + [anon_sym_inline] = ACTIONS(1110), + [anon_sym_const] = ACTIONS(1110), + [anon_sym_volatile] = ACTIONS(1110), + [anon_sym_restrict] = ACTIONS(1110), + [anon_sym__Atomic] = ACTIONS(1110), + [anon_sym_signed] = ACTIONS(1110), + [anon_sym_unsigned] = ACTIONS(1110), + [anon_sym_long] = ACTIONS(1110), + [anon_sym_short] = ACTIONS(1110), + [sym_primitive_type] = ACTIONS(1110), + [anon_sym_enum] = ACTIONS(1110), + [anon_sym_struct] = ACTIONS(1110), + [anon_sym_union] = ACTIONS(1110), + [anon_sym_if] = ACTIONS(1110), + [anon_sym_switch] = ACTIONS(1110), + [anon_sym_case] = ACTIONS(1110), + [anon_sym_default] = ACTIONS(1110), + [anon_sym_while] = ACTIONS(1110), + [anon_sym_do] = ACTIONS(1110), + [anon_sym_for] = ACTIONS(1110), + [anon_sym_return] = ACTIONS(1110), + [anon_sym_break] = ACTIONS(1110), + [anon_sym_continue] = ACTIONS(1110), + [anon_sym_goto] = ACTIONS(1110), + [anon_sym_AMP] = ACTIONS(1112), + [anon_sym_BANG] = ACTIONS(1112), + [anon_sym_TILDE] = ACTIONS(1112), + [anon_sym_DASH] = ACTIONS(1110), + [anon_sym_PLUS] = ACTIONS(1110), + [anon_sym_DASH_DASH] = ACTIONS(1112), + [anon_sym_PLUS_PLUS] = ACTIONS(1112), + [anon_sym_sizeof] = ACTIONS(1110), + [sym_number_literal] = ACTIONS(1112), + [anon_sym_L_SQUOTE] = ACTIONS(1112), + [anon_sym_u_SQUOTE] = ACTIONS(1112), + [anon_sym_U_SQUOTE] = ACTIONS(1112), + [anon_sym_u8_SQUOTE] = ACTIONS(1112), + [anon_sym_SQUOTE] = ACTIONS(1112), + [anon_sym_L_DQUOTE] = ACTIONS(1112), + [anon_sym_u_DQUOTE] = ACTIONS(1112), + [anon_sym_U_DQUOTE] = ACTIONS(1112), + [anon_sym_u8_DQUOTE] = ACTIONS(1112), + [anon_sym_DQUOTE] = ACTIONS(1112), + [sym_true] = ACTIONS(1110), + [sym_false] = ACTIONS(1110), + [sym_null] = ACTIONS(1110), + [sym_comment] = ACTIONS(3), + }, + [327] = { + [sym_identifier] = ACTIONS(1114), + [aux_sym_preproc_include_token1] = ACTIONS(1114), + [aux_sym_preproc_def_token1] = ACTIONS(1114), + [aux_sym_preproc_if_token1] = ACTIONS(1114), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1114), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1114), + [sym_preproc_directive] = ACTIONS(1114), + [anon_sym_SEMI] = ACTIONS(1116), + [anon_sym_typedef] = ACTIONS(1114), + [anon_sym_extern] = ACTIONS(1114), + [anon_sym___attribute__] = ACTIONS(1114), + [anon_sym_LPAREN2] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(1116), + [anon_sym_RBRACE] = ACTIONS(1116), + [anon_sym_STAR] = ACTIONS(1116), + [anon_sym_static] = ACTIONS(1114), + [anon_sym_auto] = ACTIONS(1114), + [anon_sym_register] = ACTIONS(1114), + [anon_sym_inline] = ACTIONS(1114), + [anon_sym_const] = ACTIONS(1114), + [anon_sym_volatile] = ACTIONS(1114), + [anon_sym_restrict] = ACTIONS(1114), + [anon_sym__Atomic] = ACTIONS(1114), + [anon_sym_signed] = ACTIONS(1114), + [anon_sym_unsigned] = ACTIONS(1114), + [anon_sym_long] = ACTIONS(1114), + [anon_sym_short] = ACTIONS(1114), + [sym_primitive_type] = ACTIONS(1114), + [anon_sym_enum] = ACTIONS(1114), + [anon_sym_struct] = ACTIONS(1114), + [anon_sym_union] = ACTIONS(1114), + [anon_sym_if] = ACTIONS(1114), + [anon_sym_switch] = ACTIONS(1114), + [anon_sym_case] = ACTIONS(1114), + [anon_sym_default] = ACTIONS(1114), + [anon_sym_while] = ACTIONS(1114), + [anon_sym_do] = ACTIONS(1114), + [anon_sym_for] = ACTIONS(1114), + [anon_sym_return] = ACTIONS(1114), + [anon_sym_break] = ACTIONS(1114), + [anon_sym_continue] = ACTIONS(1114), + [anon_sym_goto] = ACTIONS(1114), + [anon_sym_AMP] = ACTIONS(1116), + [anon_sym_BANG] = ACTIONS(1116), + [anon_sym_TILDE] = ACTIONS(1116), + [anon_sym_DASH] = ACTIONS(1114), + [anon_sym_PLUS] = ACTIONS(1114), + [anon_sym_DASH_DASH] = ACTIONS(1116), + [anon_sym_PLUS_PLUS] = ACTIONS(1116), + [anon_sym_sizeof] = ACTIONS(1114), + [sym_number_literal] = ACTIONS(1116), + [anon_sym_L_SQUOTE] = ACTIONS(1116), + [anon_sym_u_SQUOTE] = ACTIONS(1116), + [anon_sym_U_SQUOTE] = ACTIONS(1116), + [anon_sym_u8_SQUOTE] = ACTIONS(1116), + [anon_sym_SQUOTE] = ACTIONS(1116), + [anon_sym_L_DQUOTE] = ACTIONS(1116), + [anon_sym_u_DQUOTE] = ACTIONS(1116), + [anon_sym_U_DQUOTE] = ACTIONS(1116), + [anon_sym_u8_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(1116), + [sym_true] = ACTIONS(1114), + [sym_false] = ACTIONS(1114), + [sym_null] = ACTIONS(1114), + [sym_comment] = ACTIONS(3), + }, + [328] = { + [sym_identifier] = ACTIONS(1118), + [aux_sym_preproc_include_token1] = ACTIONS(1118), + [aux_sym_preproc_def_token1] = ACTIONS(1118), + [aux_sym_preproc_if_token1] = ACTIONS(1118), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1118), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1118), + [sym_preproc_directive] = ACTIONS(1118), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_typedef] = ACTIONS(1118), + [anon_sym_extern] = ACTIONS(1118), + [anon_sym___attribute__] = ACTIONS(1118), + [anon_sym_LPAREN2] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1120), + [anon_sym_RBRACE] = ACTIONS(1120), + [anon_sym_STAR] = ACTIONS(1120), + [anon_sym_static] = ACTIONS(1118), + [anon_sym_auto] = ACTIONS(1118), + [anon_sym_register] = ACTIONS(1118), + [anon_sym_inline] = ACTIONS(1118), + [anon_sym_const] = ACTIONS(1118), + [anon_sym_volatile] = ACTIONS(1118), + [anon_sym_restrict] = ACTIONS(1118), + [anon_sym__Atomic] = ACTIONS(1118), + [anon_sym_signed] = ACTIONS(1118), + [anon_sym_unsigned] = ACTIONS(1118), + [anon_sym_long] = ACTIONS(1118), + [anon_sym_short] = ACTIONS(1118), + [sym_primitive_type] = ACTIONS(1118), + [anon_sym_enum] = ACTIONS(1118), + [anon_sym_struct] = ACTIONS(1118), + [anon_sym_union] = ACTIONS(1118), + [anon_sym_if] = ACTIONS(1118), + [anon_sym_switch] = ACTIONS(1118), + [anon_sym_case] = ACTIONS(1118), + [anon_sym_default] = ACTIONS(1118), + [anon_sym_while] = ACTIONS(1118), + [anon_sym_do] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1118), + [anon_sym_return] = ACTIONS(1118), + [anon_sym_break] = ACTIONS(1118), + [anon_sym_continue] = ACTIONS(1118), + [anon_sym_goto] = ACTIONS(1118), + [anon_sym_AMP] = ACTIONS(1120), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_DASH] = ACTIONS(1118), + [anon_sym_PLUS] = ACTIONS(1118), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_sizeof] = ACTIONS(1118), + [sym_number_literal] = ACTIONS(1120), + [anon_sym_L_SQUOTE] = ACTIONS(1120), + [anon_sym_u_SQUOTE] = ACTIONS(1120), + [anon_sym_U_SQUOTE] = ACTIONS(1120), + [anon_sym_u8_SQUOTE] = ACTIONS(1120), + [anon_sym_SQUOTE] = ACTIONS(1120), + [anon_sym_L_DQUOTE] = ACTIONS(1120), + [anon_sym_u_DQUOTE] = ACTIONS(1120), + [anon_sym_U_DQUOTE] = ACTIONS(1120), + [anon_sym_u8_DQUOTE] = ACTIONS(1120), + [anon_sym_DQUOTE] = ACTIONS(1120), + [sym_true] = ACTIONS(1118), + [sym_false] = ACTIONS(1118), + [sym_null] = ACTIONS(1118), + [sym_comment] = ACTIONS(3), + }, + [329] = { + [sym_identifier] = ACTIONS(1146), + [aux_sym_preproc_include_token1] = ACTIONS(1146), + [aux_sym_preproc_def_token1] = ACTIONS(1146), + [aux_sym_preproc_if_token1] = ACTIONS(1146), + [aux_sym_preproc_if_token2] = ACTIONS(1146), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1146), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1146), + [sym_preproc_directive] = ACTIONS(1146), + [anon_sym_SEMI] = ACTIONS(1148), + [anon_sym_typedef] = ACTIONS(1146), + [anon_sym_extern] = ACTIONS(1146), + [anon_sym___attribute__] = ACTIONS(1146), + [anon_sym_LPAREN2] = ACTIONS(1148), + [anon_sym_LBRACE] = ACTIONS(1148), + [anon_sym_STAR] = ACTIONS(1148), + [anon_sym_static] = ACTIONS(1146), + [anon_sym_auto] = ACTIONS(1146), + [anon_sym_register] = ACTIONS(1146), + [anon_sym_inline] = ACTIONS(1146), + [anon_sym_const] = ACTIONS(1146), + [anon_sym_volatile] = ACTIONS(1146), + [anon_sym_restrict] = ACTIONS(1146), + [anon_sym__Atomic] = ACTIONS(1146), + [anon_sym_signed] = ACTIONS(1146), + [anon_sym_unsigned] = ACTIONS(1146), + [anon_sym_long] = ACTIONS(1146), + [anon_sym_short] = ACTIONS(1146), + [sym_primitive_type] = ACTIONS(1146), + [anon_sym_enum] = ACTIONS(1146), + [anon_sym_struct] = ACTIONS(1146), + [anon_sym_union] = ACTIONS(1146), + [anon_sym_if] = ACTIONS(1146), + [anon_sym_switch] = ACTIONS(1146), + [anon_sym_case] = ACTIONS(1146), + [anon_sym_default] = ACTIONS(1146), + [anon_sym_while] = ACTIONS(1146), + [anon_sym_do] = ACTIONS(1146), + [anon_sym_for] = ACTIONS(1146), + [anon_sym_return] = ACTIONS(1146), + [anon_sym_break] = ACTIONS(1146), + [anon_sym_continue] = ACTIONS(1146), + [anon_sym_goto] = ACTIONS(1146), + [anon_sym_AMP] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1146), + [anon_sym_DASH_DASH] = ACTIONS(1148), + [anon_sym_PLUS_PLUS] = ACTIONS(1148), + [anon_sym_sizeof] = ACTIONS(1146), + [sym_number_literal] = ACTIONS(1148), + [anon_sym_L_SQUOTE] = ACTIONS(1148), + [anon_sym_u_SQUOTE] = ACTIONS(1148), + [anon_sym_U_SQUOTE] = ACTIONS(1148), + [anon_sym_u8_SQUOTE] = ACTIONS(1148), + [anon_sym_SQUOTE] = ACTIONS(1148), + [anon_sym_L_DQUOTE] = ACTIONS(1148), + [anon_sym_u_DQUOTE] = ACTIONS(1148), + [anon_sym_U_DQUOTE] = ACTIONS(1148), + [anon_sym_u8_DQUOTE] = ACTIONS(1148), + [anon_sym_DQUOTE] = ACTIONS(1148), + [sym_true] = ACTIONS(1146), + [sym_false] = ACTIONS(1146), + [sym_null] = ACTIONS(1146), + [sym_comment] = ACTIONS(3), + }, + [330] = { + [sym_identifier] = ACTIONS(1122), + [aux_sym_preproc_include_token1] = ACTIONS(1122), + [aux_sym_preproc_def_token1] = ACTIONS(1122), + [aux_sym_preproc_if_token1] = ACTIONS(1122), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1122), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1122), + [sym_preproc_directive] = ACTIONS(1122), + [anon_sym_SEMI] = ACTIONS(1124), + [anon_sym_typedef] = ACTIONS(1122), + [anon_sym_extern] = ACTIONS(1122), + [anon_sym___attribute__] = ACTIONS(1122), + [anon_sym_LPAREN2] = ACTIONS(1124), + [anon_sym_LBRACE] = ACTIONS(1124), + [anon_sym_RBRACE] = ACTIONS(1124), + [anon_sym_STAR] = ACTIONS(1124), + [anon_sym_static] = ACTIONS(1122), + [anon_sym_auto] = ACTIONS(1122), + [anon_sym_register] = ACTIONS(1122), + [anon_sym_inline] = ACTIONS(1122), + [anon_sym_const] = ACTIONS(1122), + [anon_sym_volatile] = ACTIONS(1122), + [anon_sym_restrict] = ACTIONS(1122), + [anon_sym__Atomic] = ACTIONS(1122), + [anon_sym_signed] = ACTIONS(1122), + [anon_sym_unsigned] = ACTIONS(1122), + [anon_sym_long] = ACTIONS(1122), + [anon_sym_short] = ACTIONS(1122), + [sym_primitive_type] = ACTIONS(1122), + [anon_sym_enum] = ACTIONS(1122), + [anon_sym_struct] = ACTIONS(1122), + [anon_sym_union] = ACTIONS(1122), + [anon_sym_if] = ACTIONS(1122), + [anon_sym_switch] = ACTIONS(1122), + [anon_sym_case] = ACTIONS(1122), + [anon_sym_default] = ACTIONS(1122), + [anon_sym_while] = ACTIONS(1122), + [anon_sym_do] = ACTIONS(1122), + [anon_sym_for] = ACTIONS(1122), + [anon_sym_return] = ACTIONS(1122), + [anon_sym_break] = ACTIONS(1122), + [anon_sym_continue] = ACTIONS(1122), + [anon_sym_goto] = ACTIONS(1122), + [anon_sym_AMP] = ACTIONS(1124), + [anon_sym_BANG] = ACTIONS(1124), + [anon_sym_TILDE] = ACTIONS(1124), + [anon_sym_DASH] = ACTIONS(1122), + [anon_sym_PLUS] = ACTIONS(1122), + [anon_sym_DASH_DASH] = ACTIONS(1124), + [anon_sym_PLUS_PLUS] = ACTIONS(1124), + [anon_sym_sizeof] = ACTIONS(1122), + [sym_number_literal] = ACTIONS(1124), + [anon_sym_L_SQUOTE] = ACTIONS(1124), + [anon_sym_u_SQUOTE] = ACTIONS(1124), + [anon_sym_U_SQUOTE] = ACTIONS(1124), + [anon_sym_u8_SQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1124), + [anon_sym_L_DQUOTE] = ACTIONS(1124), + [anon_sym_u_DQUOTE] = ACTIONS(1124), + [anon_sym_U_DQUOTE] = ACTIONS(1124), + [anon_sym_u8_DQUOTE] = ACTIONS(1124), + [anon_sym_DQUOTE] = ACTIONS(1124), + [sym_true] = ACTIONS(1122), + [sym_false] = ACTIONS(1122), + [sym_null] = ACTIONS(1122), + [sym_comment] = ACTIONS(3), + }, + [331] = { + [sym_identifier] = ACTIONS(1158), + [aux_sym_preproc_include_token1] = ACTIONS(1158), + [aux_sym_preproc_def_token1] = ACTIONS(1158), + [aux_sym_preproc_if_token1] = ACTIONS(1158), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1158), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1158), + [sym_preproc_directive] = ACTIONS(1158), + [anon_sym_SEMI] = ACTIONS(1160), + [anon_sym_typedef] = ACTIONS(1158), + [anon_sym_extern] = ACTIONS(1158), + [anon_sym___attribute__] = ACTIONS(1158), + [anon_sym_LPAREN2] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(1160), + [anon_sym_RBRACE] = ACTIONS(1160), + [anon_sym_STAR] = ACTIONS(1160), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_auto] = ACTIONS(1158), + [anon_sym_register] = ACTIONS(1158), + [anon_sym_inline] = ACTIONS(1158), + [anon_sym_const] = ACTIONS(1158), + [anon_sym_volatile] = ACTIONS(1158), + [anon_sym_restrict] = ACTIONS(1158), + [anon_sym__Atomic] = ACTIONS(1158), + [anon_sym_signed] = ACTIONS(1158), + [anon_sym_unsigned] = ACTIONS(1158), + [anon_sym_long] = ACTIONS(1158), + [anon_sym_short] = ACTIONS(1158), + [sym_primitive_type] = ACTIONS(1158), + [anon_sym_enum] = ACTIONS(1158), + [anon_sym_struct] = ACTIONS(1158), + [anon_sym_union] = ACTIONS(1158), + [anon_sym_if] = ACTIONS(1158), + [anon_sym_switch] = ACTIONS(1158), + [anon_sym_case] = ACTIONS(1158), + [anon_sym_default] = ACTIONS(1158), + [anon_sym_while] = ACTIONS(1158), + [anon_sym_do] = ACTIONS(1158), + [anon_sym_for] = ACTIONS(1158), + [anon_sym_return] = ACTIONS(1158), + [anon_sym_break] = ACTIONS(1158), + [anon_sym_continue] = ACTIONS(1158), + [anon_sym_goto] = ACTIONS(1158), + [anon_sym_AMP] = ACTIONS(1160), + [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_DASH] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1158), + [anon_sym_DASH_DASH] = ACTIONS(1160), + [anon_sym_PLUS_PLUS] = ACTIONS(1160), + [anon_sym_sizeof] = ACTIONS(1158), + [sym_number_literal] = ACTIONS(1160), + [anon_sym_L_SQUOTE] = ACTIONS(1160), + [anon_sym_u_SQUOTE] = ACTIONS(1160), + [anon_sym_U_SQUOTE] = ACTIONS(1160), + [anon_sym_u8_SQUOTE] = ACTIONS(1160), + [anon_sym_SQUOTE] = ACTIONS(1160), + [anon_sym_L_DQUOTE] = ACTIONS(1160), + [anon_sym_u_DQUOTE] = ACTIONS(1160), + [anon_sym_U_DQUOTE] = ACTIONS(1160), + [anon_sym_u8_DQUOTE] = ACTIONS(1160), + [anon_sym_DQUOTE] = ACTIONS(1160), + [sym_true] = ACTIONS(1158), + [sym_false] = ACTIONS(1158), + [sym_null] = ACTIONS(1158), + [sym_comment] = ACTIONS(3), + }, + [332] = { + [ts_builtin_sym_end] = ACTIONS(1128), + [sym_identifier] = ACTIONS(1126), + [aux_sym_preproc_include_token1] = ACTIONS(1126), + [aux_sym_preproc_def_token1] = ACTIONS(1126), + [aux_sym_preproc_if_token1] = ACTIONS(1126), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1126), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1126), + [sym_preproc_directive] = ACTIONS(1126), + [anon_sym_SEMI] = ACTIONS(1128), + [anon_sym_typedef] = ACTIONS(1126), + [anon_sym_extern] = ACTIONS(1126), + [anon_sym___attribute__] = ACTIONS(1126), + [anon_sym_LPAREN2] = ACTIONS(1128), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_STAR] = ACTIONS(1128), + [anon_sym_static] = ACTIONS(1126), + [anon_sym_auto] = ACTIONS(1126), + [anon_sym_register] = ACTIONS(1126), + [anon_sym_inline] = ACTIONS(1126), + [anon_sym_const] = ACTIONS(1126), + [anon_sym_volatile] = ACTIONS(1126), + [anon_sym_restrict] = ACTIONS(1126), + [anon_sym__Atomic] = ACTIONS(1126), + [anon_sym_signed] = ACTIONS(1126), + [anon_sym_unsigned] = ACTIONS(1126), + [anon_sym_long] = ACTIONS(1126), + [anon_sym_short] = ACTIONS(1126), + [sym_primitive_type] = ACTIONS(1126), + [anon_sym_enum] = ACTIONS(1126), + [anon_sym_struct] = ACTIONS(1126), + [anon_sym_union] = ACTIONS(1126), + [anon_sym_if] = ACTIONS(1126), + [anon_sym_switch] = ACTIONS(1126), + [anon_sym_case] = ACTIONS(1126), + [anon_sym_default] = ACTIONS(1126), + [anon_sym_while] = ACTIONS(1126), + [anon_sym_do] = ACTIONS(1126), + [anon_sym_for] = ACTIONS(1126), + [anon_sym_return] = ACTIONS(1126), + [anon_sym_break] = ACTIONS(1126), + [anon_sym_continue] = ACTIONS(1126), + [anon_sym_goto] = ACTIONS(1126), + [anon_sym_AMP] = ACTIONS(1128), + [anon_sym_BANG] = ACTIONS(1128), + [anon_sym_TILDE] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1126), + [anon_sym_PLUS] = ACTIONS(1126), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_sizeof] = ACTIONS(1126), + [sym_number_literal] = ACTIONS(1128), + [anon_sym_L_SQUOTE] = ACTIONS(1128), + [anon_sym_u_SQUOTE] = ACTIONS(1128), + [anon_sym_U_SQUOTE] = ACTIONS(1128), + [anon_sym_u8_SQUOTE] = ACTIONS(1128), + [anon_sym_SQUOTE] = ACTIONS(1128), + [anon_sym_L_DQUOTE] = ACTIONS(1128), + [anon_sym_u_DQUOTE] = ACTIONS(1128), + [anon_sym_U_DQUOTE] = ACTIONS(1128), + [anon_sym_u8_DQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE] = ACTIONS(1128), + [sym_true] = ACTIONS(1126), + [sym_false] = ACTIONS(1126), + [sym_null] = ACTIONS(1126), + [sym_comment] = ACTIONS(3), + }, + [333] = { + [ts_builtin_sym_end] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1118), + [aux_sym_preproc_include_token1] = ACTIONS(1118), + [aux_sym_preproc_def_token1] = ACTIONS(1118), + [aux_sym_preproc_if_token1] = ACTIONS(1118), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1118), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1118), + [sym_preproc_directive] = ACTIONS(1118), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_typedef] = ACTIONS(1118), + [anon_sym_extern] = ACTIONS(1118), + [anon_sym___attribute__] = ACTIONS(1118), + [anon_sym_LPAREN2] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1120), + [anon_sym_STAR] = ACTIONS(1120), + [anon_sym_static] = ACTIONS(1118), + [anon_sym_auto] = ACTIONS(1118), + [anon_sym_register] = ACTIONS(1118), + [anon_sym_inline] = ACTIONS(1118), + [anon_sym_const] = ACTIONS(1118), + [anon_sym_volatile] = ACTIONS(1118), + [anon_sym_restrict] = ACTIONS(1118), + [anon_sym__Atomic] = ACTIONS(1118), + [anon_sym_signed] = ACTIONS(1118), + [anon_sym_unsigned] = ACTIONS(1118), + [anon_sym_long] = ACTIONS(1118), + [anon_sym_short] = ACTIONS(1118), + [sym_primitive_type] = ACTIONS(1118), + [anon_sym_enum] = ACTIONS(1118), + [anon_sym_struct] = ACTIONS(1118), + [anon_sym_union] = ACTIONS(1118), + [anon_sym_if] = ACTIONS(1118), + [anon_sym_switch] = ACTIONS(1118), + [anon_sym_case] = ACTIONS(1118), + [anon_sym_default] = ACTIONS(1118), + [anon_sym_while] = ACTIONS(1118), + [anon_sym_do] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1118), + [anon_sym_return] = ACTIONS(1118), + [anon_sym_break] = ACTIONS(1118), + [anon_sym_continue] = ACTIONS(1118), + [anon_sym_goto] = ACTIONS(1118), + [anon_sym_AMP] = ACTIONS(1120), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_DASH] = ACTIONS(1118), + [anon_sym_PLUS] = ACTIONS(1118), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_sizeof] = ACTIONS(1118), + [sym_number_literal] = ACTIONS(1120), + [anon_sym_L_SQUOTE] = ACTIONS(1120), + [anon_sym_u_SQUOTE] = ACTIONS(1120), + [anon_sym_U_SQUOTE] = ACTIONS(1120), + [anon_sym_u8_SQUOTE] = ACTIONS(1120), + [anon_sym_SQUOTE] = ACTIONS(1120), + [anon_sym_L_DQUOTE] = ACTIONS(1120), + [anon_sym_u_DQUOTE] = ACTIONS(1120), + [anon_sym_U_DQUOTE] = ACTIONS(1120), + [anon_sym_u8_DQUOTE] = ACTIONS(1120), + [anon_sym_DQUOTE] = ACTIONS(1120), + [sym_true] = ACTIONS(1118), + [sym_false] = ACTIONS(1118), + [sym_null] = ACTIONS(1118), + [sym_comment] = ACTIONS(3), + }, + [334] = { + [sym_identifier] = ACTIONS(1110), + [aux_sym_preproc_include_token1] = ACTIONS(1110), + [aux_sym_preproc_def_token1] = ACTIONS(1110), + [aux_sym_preproc_if_token1] = ACTIONS(1110), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1110), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1110), + [sym_preproc_directive] = ACTIONS(1110), + [anon_sym_SEMI] = ACTIONS(1112), + [anon_sym_typedef] = ACTIONS(1110), + [anon_sym_extern] = ACTIONS(1110), + [anon_sym___attribute__] = ACTIONS(1110), + [anon_sym_LPAREN2] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1112), + [anon_sym_RBRACE] = ACTIONS(1112), + [anon_sym_STAR] = ACTIONS(1112), + [anon_sym_static] = ACTIONS(1110), + [anon_sym_auto] = ACTIONS(1110), + [anon_sym_register] = ACTIONS(1110), + [anon_sym_inline] = ACTIONS(1110), + [anon_sym_const] = ACTIONS(1110), + [anon_sym_volatile] = ACTIONS(1110), + [anon_sym_restrict] = ACTIONS(1110), + [anon_sym__Atomic] = ACTIONS(1110), + [anon_sym_signed] = ACTIONS(1110), + [anon_sym_unsigned] = ACTIONS(1110), + [anon_sym_long] = ACTIONS(1110), + [anon_sym_short] = ACTIONS(1110), + [sym_primitive_type] = ACTIONS(1110), + [anon_sym_enum] = ACTIONS(1110), + [anon_sym_struct] = ACTIONS(1110), + [anon_sym_union] = ACTIONS(1110), + [anon_sym_if] = ACTIONS(1110), + [anon_sym_switch] = ACTIONS(1110), + [anon_sym_case] = ACTIONS(1110), + [anon_sym_default] = ACTIONS(1110), + [anon_sym_while] = ACTIONS(1110), + [anon_sym_do] = ACTIONS(1110), + [anon_sym_for] = ACTIONS(1110), + [anon_sym_return] = ACTIONS(1110), + [anon_sym_break] = ACTIONS(1110), + [anon_sym_continue] = ACTIONS(1110), + [anon_sym_goto] = ACTIONS(1110), + [anon_sym_AMP] = ACTIONS(1112), + [anon_sym_BANG] = ACTIONS(1112), + [anon_sym_TILDE] = ACTIONS(1112), + [anon_sym_DASH] = ACTIONS(1110), + [anon_sym_PLUS] = ACTIONS(1110), + [anon_sym_DASH_DASH] = ACTIONS(1112), + [anon_sym_PLUS_PLUS] = ACTIONS(1112), + [anon_sym_sizeof] = ACTIONS(1110), + [sym_number_literal] = ACTIONS(1112), + [anon_sym_L_SQUOTE] = ACTIONS(1112), + [anon_sym_u_SQUOTE] = ACTIONS(1112), + [anon_sym_U_SQUOTE] = ACTIONS(1112), + [anon_sym_u8_SQUOTE] = ACTIONS(1112), + [anon_sym_SQUOTE] = ACTIONS(1112), + [anon_sym_L_DQUOTE] = ACTIONS(1112), + [anon_sym_u_DQUOTE] = ACTIONS(1112), + [anon_sym_U_DQUOTE] = ACTIONS(1112), + [anon_sym_u8_DQUOTE] = ACTIONS(1112), + [anon_sym_DQUOTE] = ACTIONS(1112), + [sym_true] = ACTIONS(1110), + [sym_false] = ACTIONS(1110), + [sym_null] = ACTIONS(1110), + [sym_comment] = ACTIONS(3), + }, + [335] = { + [ts_builtin_sym_end] = ACTIONS(1148), + [sym_identifier] = ACTIONS(1146), + [aux_sym_preproc_include_token1] = ACTIONS(1146), + [aux_sym_preproc_def_token1] = ACTIONS(1146), + [aux_sym_preproc_if_token1] = ACTIONS(1146), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1146), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1146), + [sym_preproc_directive] = ACTIONS(1146), + [anon_sym_SEMI] = ACTIONS(1148), + [anon_sym_typedef] = ACTIONS(1146), + [anon_sym_extern] = ACTIONS(1146), + [anon_sym___attribute__] = ACTIONS(1146), + [anon_sym_LPAREN2] = ACTIONS(1148), + [anon_sym_LBRACE] = ACTIONS(1148), + [anon_sym_STAR] = ACTIONS(1148), + [anon_sym_static] = ACTIONS(1146), + [anon_sym_auto] = ACTIONS(1146), + [anon_sym_register] = ACTIONS(1146), + [anon_sym_inline] = ACTIONS(1146), + [anon_sym_const] = ACTIONS(1146), + [anon_sym_volatile] = ACTIONS(1146), + [anon_sym_restrict] = ACTIONS(1146), + [anon_sym__Atomic] = ACTIONS(1146), + [anon_sym_signed] = ACTIONS(1146), + [anon_sym_unsigned] = ACTIONS(1146), + [anon_sym_long] = ACTIONS(1146), + [anon_sym_short] = ACTIONS(1146), + [sym_primitive_type] = ACTIONS(1146), + [anon_sym_enum] = ACTIONS(1146), + [anon_sym_struct] = ACTIONS(1146), + [anon_sym_union] = ACTIONS(1146), + [anon_sym_if] = ACTIONS(1146), + [anon_sym_switch] = ACTIONS(1146), + [anon_sym_case] = ACTIONS(1146), + [anon_sym_default] = ACTIONS(1146), + [anon_sym_while] = ACTIONS(1146), + [anon_sym_do] = ACTIONS(1146), + [anon_sym_for] = ACTIONS(1146), + [anon_sym_return] = ACTIONS(1146), + [anon_sym_break] = ACTIONS(1146), + [anon_sym_continue] = ACTIONS(1146), + [anon_sym_goto] = ACTIONS(1146), + [anon_sym_AMP] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1146), + [anon_sym_DASH_DASH] = ACTIONS(1148), + [anon_sym_PLUS_PLUS] = ACTIONS(1148), + [anon_sym_sizeof] = ACTIONS(1146), + [sym_number_literal] = ACTIONS(1148), + [anon_sym_L_SQUOTE] = ACTIONS(1148), + [anon_sym_u_SQUOTE] = ACTIONS(1148), + [anon_sym_U_SQUOTE] = ACTIONS(1148), + [anon_sym_u8_SQUOTE] = ACTIONS(1148), + [anon_sym_SQUOTE] = ACTIONS(1148), + [anon_sym_L_DQUOTE] = ACTIONS(1148), + [anon_sym_u_DQUOTE] = ACTIONS(1148), + [anon_sym_U_DQUOTE] = ACTIONS(1148), + [anon_sym_u8_DQUOTE] = ACTIONS(1148), + [anon_sym_DQUOTE] = ACTIONS(1148), + [sym_true] = ACTIONS(1146), + [sym_false] = ACTIONS(1146), + [sym_null] = ACTIONS(1146), + [sym_comment] = ACTIONS(3), + }, + [336] = { + [ts_builtin_sym_end] = ACTIONS(1160), + [sym_identifier] = ACTIONS(1158), + [aux_sym_preproc_include_token1] = ACTIONS(1158), + [aux_sym_preproc_def_token1] = ACTIONS(1158), + [aux_sym_preproc_if_token1] = ACTIONS(1158), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1158), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1158), + [sym_preproc_directive] = ACTIONS(1158), + [anon_sym_SEMI] = ACTIONS(1160), + [anon_sym_typedef] = ACTIONS(1158), + [anon_sym_extern] = ACTIONS(1158), + [anon_sym___attribute__] = ACTIONS(1158), + [anon_sym_LPAREN2] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(1160), + [anon_sym_STAR] = ACTIONS(1160), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_auto] = ACTIONS(1158), + [anon_sym_register] = ACTIONS(1158), + [anon_sym_inline] = ACTIONS(1158), + [anon_sym_const] = ACTIONS(1158), + [anon_sym_volatile] = ACTIONS(1158), + [anon_sym_restrict] = ACTIONS(1158), + [anon_sym__Atomic] = ACTIONS(1158), + [anon_sym_signed] = ACTIONS(1158), + [anon_sym_unsigned] = ACTIONS(1158), + [anon_sym_long] = ACTIONS(1158), + [anon_sym_short] = ACTIONS(1158), + [sym_primitive_type] = ACTIONS(1158), + [anon_sym_enum] = ACTIONS(1158), + [anon_sym_struct] = ACTIONS(1158), + [anon_sym_union] = ACTIONS(1158), + [anon_sym_if] = ACTIONS(1158), + [anon_sym_switch] = ACTIONS(1158), + [anon_sym_case] = ACTIONS(1158), + [anon_sym_default] = ACTIONS(1158), + [anon_sym_while] = ACTIONS(1158), + [anon_sym_do] = ACTIONS(1158), + [anon_sym_for] = ACTIONS(1158), + [anon_sym_return] = ACTIONS(1158), + [anon_sym_break] = ACTIONS(1158), + [anon_sym_continue] = ACTIONS(1158), + [anon_sym_goto] = ACTIONS(1158), + [anon_sym_AMP] = ACTIONS(1160), + [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_DASH] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1158), + [anon_sym_DASH_DASH] = ACTIONS(1160), + [anon_sym_PLUS_PLUS] = ACTIONS(1160), + [anon_sym_sizeof] = ACTIONS(1158), + [sym_number_literal] = ACTIONS(1160), + [anon_sym_L_SQUOTE] = ACTIONS(1160), + [anon_sym_u_SQUOTE] = ACTIONS(1160), + [anon_sym_U_SQUOTE] = ACTIONS(1160), + [anon_sym_u8_SQUOTE] = ACTIONS(1160), + [anon_sym_SQUOTE] = ACTIONS(1160), + [anon_sym_L_DQUOTE] = ACTIONS(1160), + [anon_sym_u_DQUOTE] = ACTIONS(1160), + [anon_sym_U_DQUOTE] = ACTIONS(1160), + [anon_sym_u8_DQUOTE] = ACTIONS(1160), + [anon_sym_DQUOTE] = ACTIONS(1160), + [sym_true] = ACTIONS(1158), + [sym_false] = ACTIONS(1158), + [sym_null] = ACTIONS(1158), + [sym_comment] = ACTIONS(3), + }, + [337] = { + [sym_identifier] = ACTIONS(1166), + [aux_sym_preproc_include_token1] = ACTIONS(1166), + [aux_sym_preproc_def_token1] = ACTIONS(1166), + [aux_sym_preproc_if_token1] = ACTIONS(1166), + [aux_sym_preproc_if_token2] = ACTIONS(1166), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1166), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1166), + [sym_preproc_directive] = ACTIONS(1166), + [anon_sym_SEMI] = ACTIONS(1168), + [anon_sym_typedef] = ACTIONS(1166), + [anon_sym_extern] = ACTIONS(1166), + [anon_sym___attribute__] = ACTIONS(1166), + [anon_sym_LPAREN2] = ACTIONS(1168), + [anon_sym_LBRACE] = ACTIONS(1168), + [anon_sym_STAR] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(1166), + [anon_sym_auto] = ACTIONS(1166), + [anon_sym_register] = ACTIONS(1166), + [anon_sym_inline] = ACTIONS(1166), + [anon_sym_const] = ACTIONS(1166), + [anon_sym_volatile] = ACTIONS(1166), + [anon_sym_restrict] = ACTIONS(1166), + [anon_sym__Atomic] = ACTIONS(1166), + [anon_sym_signed] = ACTIONS(1166), + [anon_sym_unsigned] = ACTIONS(1166), + [anon_sym_long] = ACTIONS(1166), + [anon_sym_short] = ACTIONS(1166), + [sym_primitive_type] = ACTIONS(1166), + [anon_sym_enum] = ACTIONS(1166), + [anon_sym_struct] = ACTIONS(1166), + [anon_sym_union] = ACTIONS(1166), + [anon_sym_if] = ACTIONS(1166), + [anon_sym_switch] = ACTIONS(1166), + [anon_sym_case] = ACTIONS(1166), + [anon_sym_default] = ACTIONS(1166), + [anon_sym_while] = ACTIONS(1166), + [anon_sym_do] = ACTIONS(1166), + [anon_sym_for] = ACTIONS(1166), + [anon_sym_return] = ACTIONS(1166), + [anon_sym_break] = ACTIONS(1166), + [anon_sym_continue] = ACTIONS(1166), + [anon_sym_goto] = ACTIONS(1166), + [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_BANG] = ACTIONS(1168), + [anon_sym_TILDE] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1168), + [anon_sym_sizeof] = ACTIONS(1166), + [sym_number_literal] = ACTIONS(1168), + [anon_sym_L_SQUOTE] = ACTIONS(1168), + [anon_sym_u_SQUOTE] = ACTIONS(1168), + [anon_sym_U_SQUOTE] = ACTIONS(1168), + [anon_sym_u8_SQUOTE] = ACTIONS(1168), + [anon_sym_SQUOTE] = ACTIONS(1168), + [anon_sym_L_DQUOTE] = ACTIONS(1168), + [anon_sym_u_DQUOTE] = ACTIONS(1168), + [anon_sym_U_DQUOTE] = ACTIONS(1168), + [anon_sym_u8_DQUOTE] = ACTIONS(1168), + [anon_sym_DQUOTE] = ACTIONS(1168), + [sym_true] = ACTIONS(1166), + [sym_false] = ACTIONS(1166), + [sym_null] = ACTIONS(1166), + [sym_comment] = ACTIONS(3), + }, + [338] = { + [sym_identifier] = ACTIONS(1174), + [aux_sym_preproc_include_token1] = ACTIONS(1174), + [aux_sym_preproc_def_token1] = ACTIONS(1174), + [aux_sym_preproc_if_token1] = ACTIONS(1174), + [aux_sym_preproc_if_token2] = ACTIONS(1174), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1174), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1174), + [sym_preproc_directive] = ACTIONS(1174), + [anon_sym_SEMI] = ACTIONS(1176), + [anon_sym_typedef] = ACTIONS(1174), + [anon_sym_extern] = ACTIONS(1174), + [anon_sym___attribute__] = ACTIONS(1174), + [anon_sym_LPAREN2] = ACTIONS(1176), + [anon_sym_LBRACE] = ACTIONS(1176), + [anon_sym_STAR] = ACTIONS(1176), + [anon_sym_static] = ACTIONS(1174), + [anon_sym_auto] = ACTIONS(1174), + [anon_sym_register] = ACTIONS(1174), + [anon_sym_inline] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1174), + [anon_sym_volatile] = ACTIONS(1174), + [anon_sym_restrict] = ACTIONS(1174), + [anon_sym__Atomic] = ACTIONS(1174), + [anon_sym_signed] = ACTIONS(1174), + [anon_sym_unsigned] = ACTIONS(1174), + [anon_sym_long] = ACTIONS(1174), + [anon_sym_short] = ACTIONS(1174), + [sym_primitive_type] = ACTIONS(1174), + [anon_sym_enum] = ACTIONS(1174), + [anon_sym_struct] = ACTIONS(1174), + [anon_sym_union] = ACTIONS(1174), + [anon_sym_if] = ACTIONS(1174), + [anon_sym_switch] = ACTIONS(1174), + [anon_sym_case] = ACTIONS(1174), + [anon_sym_default] = ACTIONS(1174), + [anon_sym_while] = ACTIONS(1174), + [anon_sym_do] = ACTIONS(1174), + [anon_sym_for] = ACTIONS(1174), + [anon_sym_return] = ACTIONS(1174), + [anon_sym_break] = ACTIONS(1174), + [anon_sym_continue] = ACTIONS(1174), + [anon_sym_goto] = ACTIONS(1174), + [anon_sym_AMP] = ACTIONS(1176), + [anon_sym_BANG] = ACTIONS(1176), + [anon_sym_TILDE] = ACTIONS(1176), + [anon_sym_DASH] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1174), + [anon_sym_DASH_DASH] = ACTIONS(1176), + [anon_sym_PLUS_PLUS] = ACTIONS(1176), + [anon_sym_sizeof] = ACTIONS(1174), + [sym_number_literal] = ACTIONS(1176), + [anon_sym_L_SQUOTE] = ACTIONS(1176), + [anon_sym_u_SQUOTE] = ACTIONS(1176), + [anon_sym_U_SQUOTE] = ACTIONS(1176), + [anon_sym_u8_SQUOTE] = ACTIONS(1176), + [anon_sym_SQUOTE] = ACTIONS(1176), + [anon_sym_L_DQUOTE] = ACTIONS(1176), + [anon_sym_u_DQUOTE] = ACTIONS(1176), + [anon_sym_U_DQUOTE] = ACTIONS(1176), + [anon_sym_u8_DQUOTE] = ACTIONS(1176), + [anon_sym_DQUOTE] = ACTIONS(1176), + [sym_true] = ACTIONS(1174), + [sym_false] = ACTIONS(1174), + [sym_null] = ACTIONS(1174), + [sym_comment] = ACTIONS(3), + }, + [339] = { + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_RBRACE] = ACTIONS(1156), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [sym_null] = ACTIONS(1154), + [sym_comment] = ACTIONS(3), + }, + [340] = { + [sym_identifier] = ACTIONS(1142), + [aux_sym_preproc_include_token1] = ACTIONS(1142), + [aux_sym_preproc_def_token1] = ACTIONS(1142), + [aux_sym_preproc_if_token1] = ACTIONS(1142), + [aux_sym_preproc_if_token2] = ACTIONS(1142), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1142), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1142), + [sym_preproc_directive] = ACTIONS(1142), + [anon_sym_SEMI] = ACTIONS(1144), + [anon_sym_typedef] = ACTIONS(1142), + [anon_sym_extern] = ACTIONS(1142), + [anon_sym___attribute__] = ACTIONS(1142), + [anon_sym_LPAREN2] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(1144), + [anon_sym_STAR] = ACTIONS(1144), + [anon_sym_static] = ACTIONS(1142), + [anon_sym_auto] = ACTIONS(1142), + [anon_sym_register] = ACTIONS(1142), + [anon_sym_inline] = ACTIONS(1142), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_volatile] = ACTIONS(1142), + [anon_sym_restrict] = ACTIONS(1142), + [anon_sym__Atomic] = ACTIONS(1142), + [anon_sym_signed] = ACTIONS(1142), + [anon_sym_unsigned] = ACTIONS(1142), + [anon_sym_long] = ACTIONS(1142), + [anon_sym_short] = ACTIONS(1142), + [sym_primitive_type] = ACTIONS(1142), + [anon_sym_enum] = ACTIONS(1142), + [anon_sym_struct] = ACTIONS(1142), + [anon_sym_union] = ACTIONS(1142), + [anon_sym_if] = ACTIONS(1142), + [anon_sym_switch] = ACTIONS(1142), + [anon_sym_case] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(1142), + [anon_sym_while] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_break] = ACTIONS(1142), + [anon_sym_continue] = ACTIONS(1142), + [anon_sym_goto] = ACTIONS(1142), + [anon_sym_AMP] = ACTIONS(1144), + [anon_sym_BANG] = ACTIONS(1144), + [anon_sym_TILDE] = ACTIONS(1144), + [anon_sym_DASH] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1142), + [anon_sym_DASH_DASH] = ACTIONS(1144), + [anon_sym_PLUS_PLUS] = ACTIONS(1144), + [anon_sym_sizeof] = ACTIONS(1142), + [sym_number_literal] = ACTIONS(1144), + [anon_sym_L_SQUOTE] = ACTIONS(1144), + [anon_sym_u_SQUOTE] = ACTIONS(1144), + [anon_sym_U_SQUOTE] = ACTIONS(1144), + [anon_sym_u8_SQUOTE] = ACTIONS(1144), + [anon_sym_SQUOTE] = ACTIONS(1144), + [anon_sym_L_DQUOTE] = ACTIONS(1144), + [anon_sym_u_DQUOTE] = ACTIONS(1144), + [anon_sym_U_DQUOTE] = ACTIONS(1144), + [anon_sym_u8_DQUOTE] = ACTIONS(1144), + [anon_sym_DQUOTE] = ACTIONS(1144), + [sym_true] = ACTIONS(1142), + [sym_false] = ACTIONS(1142), + [sym_null] = ACTIONS(1142), + [sym_comment] = ACTIONS(3), + }, + [341] = { + [sym_identifier] = ACTIONS(1098), + [aux_sym_preproc_include_token1] = ACTIONS(1098), + [aux_sym_preproc_def_token1] = ACTIONS(1098), + [aux_sym_preproc_if_token1] = ACTIONS(1098), + [aux_sym_preproc_if_token2] = ACTIONS(1098), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1098), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1098), + [sym_preproc_directive] = ACTIONS(1098), + [anon_sym_SEMI] = ACTIONS(1100), + [anon_sym_typedef] = ACTIONS(1098), + [anon_sym_extern] = ACTIONS(1098), + [anon_sym___attribute__] = ACTIONS(1098), + [anon_sym_LPAREN2] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1100), + [anon_sym_STAR] = ACTIONS(1100), + [anon_sym_static] = ACTIONS(1098), + [anon_sym_auto] = ACTIONS(1098), + [anon_sym_register] = ACTIONS(1098), + [anon_sym_inline] = ACTIONS(1098), + [anon_sym_const] = ACTIONS(1098), + [anon_sym_volatile] = ACTIONS(1098), + [anon_sym_restrict] = ACTIONS(1098), + [anon_sym__Atomic] = ACTIONS(1098), + [anon_sym_signed] = ACTIONS(1098), + [anon_sym_unsigned] = ACTIONS(1098), + [anon_sym_long] = ACTIONS(1098), + [anon_sym_short] = ACTIONS(1098), + [sym_primitive_type] = ACTIONS(1098), + [anon_sym_enum] = ACTIONS(1098), + [anon_sym_struct] = ACTIONS(1098), + [anon_sym_union] = ACTIONS(1098), + [anon_sym_if] = ACTIONS(1098), + [anon_sym_switch] = ACTIONS(1098), + [anon_sym_case] = ACTIONS(1098), + [anon_sym_default] = ACTIONS(1098), + [anon_sym_while] = ACTIONS(1098), + [anon_sym_do] = ACTIONS(1098), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_return] = ACTIONS(1098), + [anon_sym_break] = ACTIONS(1098), + [anon_sym_continue] = ACTIONS(1098), + [anon_sym_goto] = ACTIONS(1098), + [anon_sym_AMP] = ACTIONS(1100), + [anon_sym_BANG] = ACTIONS(1100), + [anon_sym_TILDE] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1098), + [anon_sym_PLUS] = ACTIONS(1098), + [anon_sym_DASH_DASH] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1100), + [anon_sym_sizeof] = ACTIONS(1098), + [sym_number_literal] = ACTIONS(1100), + [anon_sym_L_SQUOTE] = ACTIONS(1100), + [anon_sym_u_SQUOTE] = ACTIONS(1100), + [anon_sym_U_SQUOTE] = ACTIONS(1100), + [anon_sym_u8_SQUOTE] = ACTIONS(1100), + [anon_sym_SQUOTE] = ACTIONS(1100), + [anon_sym_L_DQUOTE] = ACTIONS(1100), + [anon_sym_u_DQUOTE] = ACTIONS(1100), + [anon_sym_U_DQUOTE] = ACTIONS(1100), + [anon_sym_u8_DQUOTE] = ACTIONS(1100), + [anon_sym_DQUOTE] = ACTIONS(1100), + [sym_true] = ACTIONS(1098), + [sym_false] = ACTIONS(1098), + [sym_null] = ACTIONS(1098), + [sym_comment] = ACTIONS(3), + }, + [342] = { + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token2] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [sym_null] = ACTIONS(1154), + [sym_comment] = ACTIONS(3), + }, + [343] = { + [sym_identifier] = ACTIONS(1130), + [aux_sym_preproc_include_token1] = ACTIONS(1130), + [aux_sym_preproc_def_token1] = ACTIONS(1130), + [aux_sym_preproc_if_token1] = ACTIONS(1130), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1130), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1130), + [sym_preproc_directive] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(1132), + [anon_sym_typedef] = ACTIONS(1130), + [anon_sym_extern] = ACTIONS(1130), + [anon_sym___attribute__] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_RBRACE] = ACTIONS(1132), + [anon_sym_STAR] = ACTIONS(1132), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_auto] = ACTIONS(1130), + [anon_sym_register] = ACTIONS(1130), + [anon_sym_inline] = ACTIONS(1130), + [anon_sym_const] = ACTIONS(1130), + [anon_sym_volatile] = ACTIONS(1130), + [anon_sym_restrict] = ACTIONS(1130), + [anon_sym__Atomic] = ACTIONS(1130), + [anon_sym_signed] = ACTIONS(1130), + [anon_sym_unsigned] = ACTIONS(1130), + [anon_sym_long] = ACTIONS(1130), + [anon_sym_short] = ACTIONS(1130), + [sym_primitive_type] = ACTIONS(1130), + [anon_sym_enum] = ACTIONS(1130), + [anon_sym_struct] = ACTIONS(1130), + [anon_sym_union] = ACTIONS(1130), + [anon_sym_if] = ACTIONS(1130), + [anon_sym_switch] = ACTIONS(1130), + [anon_sym_case] = ACTIONS(1130), + [anon_sym_default] = ACTIONS(1130), + [anon_sym_while] = ACTIONS(1130), + [anon_sym_do] = ACTIONS(1130), + [anon_sym_for] = ACTIONS(1130), + [anon_sym_return] = ACTIONS(1130), + [anon_sym_break] = ACTIONS(1130), + [anon_sym_continue] = ACTIONS(1130), + [anon_sym_goto] = ACTIONS(1130), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_BANG] = ACTIONS(1132), + [anon_sym_TILDE] = ACTIONS(1132), + [anon_sym_DASH] = ACTIONS(1130), + [anon_sym_PLUS] = ACTIONS(1130), + [anon_sym_DASH_DASH] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1132), + [anon_sym_sizeof] = ACTIONS(1130), + [sym_number_literal] = ACTIONS(1132), + [anon_sym_L_SQUOTE] = ACTIONS(1132), + [anon_sym_u_SQUOTE] = ACTIONS(1132), + [anon_sym_U_SQUOTE] = ACTIONS(1132), + [anon_sym_u8_SQUOTE] = ACTIONS(1132), + [anon_sym_SQUOTE] = ACTIONS(1132), + [anon_sym_L_DQUOTE] = ACTIONS(1132), + [anon_sym_u_DQUOTE] = ACTIONS(1132), + [anon_sym_U_DQUOTE] = ACTIONS(1132), + [anon_sym_u8_DQUOTE] = ACTIONS(1132), + [anon_sym_DQUOTE] = ACTIONS(1132), + [sym_true] = ACTIONS(1130), + [sym_false] = ACTIONS(1130), + [sym_null] = ACTIONS(1130), + [sym_comment] = ACTIONS(3), + }, + [344] = { + [ts_builtin_sym_end] = ACTIONS(1100), + [sym_identifier] = ACTIONS(1098), + [aux_sym_preproc_include_token1] = ACTIONS(1098), + [aux_sym_preproc_def_token1] = ACTIONS(1098), + [aux_sym_preproc_if_token1] = ACTIONS(1098), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1098), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1098), + [sym_preproc_directive] = ACTIONS(1098), + [anon_sym_SEMI] = ACTIONS(1100), + [anon_sym_typedef] = ACTIONS(1098), + [anon_sym_extern] = ACTIONS(1098), + [anon_sym___attribute__] = ACTIONS(1098), + [anon_sym_LPAREN2] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1100), + [anon_sym_STAR] = ACTIONS(1100), + [anon_sym_static] = ACTIONS(1098), + [anon_sym_auto] = ACTIONS(1098), + [anon_sym_register] = ACTIONS(1098), + [anon_sym_inline] = ACTIONS(1098), + [anon_sym_const] = ACTIONS(1098), + [anon_sym_volatile] = ACTIONS(1098), + [anon_sym_restrict] = ACTIONS(1098), + [anon_sym__Atomic] = ACTIONS(1098), + [anon_sym_signed] = ACTIONS(1098), + [anon_sym_unsigned] = ACTIONS(1098), + [anon_sym_long] = ACTIONS(1098), + [anon_sym_short] = ACTIONS(1098), + [sym_primitive_type] = ACTIONS(1098), + [anon_sym_enum] = ACTIONS(1098), + [anon_sym_struct] = ACTIONS(1098), + [anon_sym_union] = ACTIONS(1098), + [anon_sym_if] = ACTIONS(1098), + [anon_sym_switch] = ACTIONS(1098), + [anon_sym_case] = ACTIONS(1098), + [anon_sym_default] = ACTIONS(1098), + [anon_sym_while] = ACTIONS(1098), + [anon_sym_do] = ACTIONS(1098), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_return] = ACTIONS(1098), + [anon_sym_break] = ACTIONS(1098), + [anon_sym_continue] = ACTIONS(1098), + [anon_sym_goto] = ACTIONS(1098), + [anon_sym_AMP] = ACTIONS(1100), + [anon_sym_BANG] = ACTIONS(1100), + [anon_sym_TILDE] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1098), + [anon_sym_PLUS] = ACTIONS(1098), + [anon_sym_DASH_DASH] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1100), + [anon_sym_sizeof] = ACTIONS(1098), + [sym_number_literal] = ACTIONS(1100), + [anon_sym_L_SQUOTE] = ACTIONS(1100), + [anon_sym_u_SQUOTE] = ACTIONS(1100), + [anon_sym_U_SQUOTE] = ACTIONS(1100), + [anon_sym_u8_SQUOTE] = ACTIONS(1100), + [anon_sym_SQUOTE] = ACTIONS(1100), + [anon_sym_L_DQUOTE] = ACTIONS(1100), + [anon_sym_u_DQUOTE] = ACTIONS(1100), + [anon_sym_U_DQUOTE] = ACTIONS(1100), + [anon_sym_u8_DQUOTE] = ACTIONS(1100), + [anon_sym_DQUOTE] = ACTIONS(1100), + [sym_true] = ACTIONS(1098), + [sym_false] = ACTIONS(1098), + [sym_null] = ACTIONS(1098), + [sym_comment] = ACTIONS(3), + }, + [345] = { + [ts_builtin_sym_end] = ACTIONS(1112), + [sym_identifier] = ACTIONS(1110), + [aux_sym_preproc_include_token1] = ACTIONS(1110), + [aux_sym_preproc_def_token1] = ACTIONS(1110), + [aux_sym_preproc_if_token1] = ACTIONS(1110), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1110), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1110), + [sym_preproc_directive] = ACTIONS(1110), + [anon_sym_SEMI] = ACTIONS(1112), + [anon_sym_typedef] = ACTIONS(1110), + [anon_sym_extern] = ACTIONS(1110), + [anon_sym___attribute__] = ACTIONS(1110), + [anon_sym_LPAREN2] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1112), + [anon_sym_STAR] = ACTIONS(1112), + [anon_sym_static] = ACTIONS(1110), + [anon_sym_auto] = ACTIONS(1110), + [anon_sym_register] = ACTIONS(1110), + [anon_sym_inline] = ACTIONS(1110), + [anon_sym_const] = ACTIONS(1110), + [anon_sym_volatile] = ACTIONS(1110), + [anon_sym_restrict] = ACTIONS(1110), + [anon_sym__Atomic] = ACTIONS(1110), + [anon_sym_signed] = ACTIONS(1110), + [anon_sym_unsigned] = ACTIONS(1110), + [anon_sym_long] = ACTIONS(1110), + [anon_sym_short] = ACTIONS(1110), + [sym_primitive_type] = ACTIONS(1110), + [anon_sym_enum] = ACTIONS(1110), + [anon_sym_struct] = ACTIONS(1110), + [anon_sym_union] = ACTIONS(1110), + [anon_sym_if] = ACTIONS(1110), + [anon_sym_switch] = ACTIONS(1110), + [anon_sym_case] = ACTIONS(1110), + [anon_sym_default] = ACTIONS(1110), + [anon_sym_while] = ACTIONS(1110), + [anon_sym_do] = ACTIONS(1110), + [anon_sym_for] = ACTIONS(1110), + [anon_sym_return] = ACTIONS(1110), + [anon_sym_break] = ACTIONS(1110), + [anon_sym_continue] = ACTIONS(1110), + [anon_sym_goto] = ACTIONS(1110), + [anon_sym_AMP] = ACTIONS(1112), + [anon_sym_BANG] = ACTIONS(1112), + [anon_sym_TILDE] = ACTIONS(1112), + [anon_sym_DASH] = ACTIONS(1110), + [anon_sym_PLUS] = ACTIONS(1110), + [anon_sym_DASH_DASH] = ACTIONS(1112), + [anon_sym_PLUS_PLUS] = ACTIONS(1112), + [anon_sym_sizeof] = ACTIONS(1110), + [sym_number_literal] = ACTIONS(1112), + [anon_sym_L_SQUOTE] = ACTIONS(1112), + [anon_sym_u_SQUOTE] = ACTIONS(1112), + [anon_sym_U_SQUOTE] = ACTIONS(1112), + [anon_sym_u8_SQUOTE] = ACTIONS(1112), + [anon_sym_SQUOTE] = ACTIONS(1112), + [anon_sym_L_DQUOTE] = ACTIONS(1112), + [anon_sym_u_DQUOTE] = ACTIONS(1112), + [anon_sym_U_DQUOTE] = ACTIONS(1112), + [anon_sym_u8_DQUOTE] = ACTIONS(1112), + [anon_sym_DQUOTE] = ACTIONS(1112), + [sym_true] = ACTIONS(1110), + [sym_false] = ACTIONS(1110), + [sym_null] = ACTIONS(1110), + [sym_comment] = ACTIONS(3), + }, + [346] = { + [sym_identifier] = ACTIONS(1162), + [aux_sym_preproc_include_token1] = ACTIONS(1162), + [aux_sym_preproc_def_token1] = ACTIONS(1162), + [aux_sym_preproc_if_token1] = ACTIONS(1162), + [aux_sym_preproc_if_token2] = ACTIONS(1162), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1162), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1162), + [sym_preproc_directive] = ACTIONS(1162), + [anon_sym_SEMI] = ACTIONS(1164), + [anon_sym_typedef] = ACTIONS(1162), + [anon_sym_extern] = ACTIONS(1162), + [anon_sym___attribute__] = ACTIONS(1162), + [anon_sym_LPAREN2] = ACTIONS(1164), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_STAR] = ACTIONS(1164), + [anon_sym_static] = ACTIONS(1162), + [anon_sym_auto] = ACTIONS(1162), + [anon_sym_register] = ACTIONS(1162), + [anon_sym_inline] = ACTIONS(1162), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_volatile] = ACTIONS(1162), + [anon_sym_restrict] = ACTIONS(1162), + [anon_sym__Atomic] = ACTIONS(1162), + [anon_sym_signed] = ACTIONS(1162), + [anon_sym_unsigned] = ACTIONS(1162), + [anon_sym_long] = ACTIONS(1162), + [anon_sym_short] = ACTIONS(1162), + [sym_primitive_type] = ACTIONS(1162), + [anon_sym_enum] = ACTIONS(1162), + [anon_sym_struct] = ACTIONS(1162), + [anon_sym_union] = ACTIONS(1162), + [anon_sym_if] = ACTIONS(1162), + [anon_sym_switch] = ACTIONS(1162), + [anon_sym_case] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(1162), + [anon_sym_while] = ACTIONS(1162), + [anon_sym_do] = ACTIONS(1162), + [anon_sym_for] = ACTIONS(1162), + [anon_sym_return] = ACTIONS(1162), + [anon_sym_break] = ACTIONS(1162), + [anon_sym_continue] = ACTIONS(1162), + [anon_sym_goto] = ACTIONS(1162), + [anon_sym_AMP] = ACTIONS(1164), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1162), + [anon_sym_PLUS] = ACTIONS(1162), + [anon_sym_DASH_DASH] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1164), + [anon_sym_sizeof] = ACTIONS(1162), + [sym_number_literal] = ACTIONS(1164), + [anon_sym_L_SQUOTE] = ACTIONS(1164), + [anon_sym_u_SQUOTE] = ACTIONS(1164), + [anon_sym_U_SQUOTE] = ACTIONS(1164), + [anon_sym_u8_SQUOTE] = ACTIONS(1164), + [anon_sym_SQUOTE] = ACTIONS(1164), + [anon_sym_L_DQUOTE] = ACTIONS(1164), + [anon_sym_u_DQUOTE] = ACTIONS(1164), + [anon_sym_U_DQUOTE] = ACTIONS(1164), + [anon_sym_u8_DQUOTE] = ACTIONS(1164), + [anon_sym_DQUOTE] = ACTIONS(1164), + [sym_true] = ACTIONS(1162), + [sym_false] = ACTIONS(1162), + [sym_null] = ACTIONS(1162), + [sym_comment] = ACTIONS(3), + }, + [347] = { + [ts_builtin_sym_end] = ACTIONS(1108), + [sym_identifier] = ACTIONS(1106), + [aux_sym_preproc_include_token1] = ACTIONS(1106), + [aux_sym_preproc_def_token1] = ACTIONS(1106), + [aux_sym_preproc_if_token1] = ACTIONS(1106), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1106), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1106), + [sym_preproc_directive] = ACTIONS(1106), + [anon_sym_SEMI] = ACTIONS(1108), + [anon_sym_typedef] = ACTIONS(1106), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym___attribute__] = ACTIONS(1106), + [anon_sym_LPAREN2] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_STAR] = ACTIONS(1108), + [anon_sym_static] = ACTIONS(1106), + [anon_sym_auto] = ACTIONS(1106), + [anon_sym_register] = ACTIONS(1106), + [anon_sym_inline] = ACTIONS(1106), + [anon_sym_const] = ACTIONS(1106), + [anon_sym_volatile] = ACTIONS(1106), + [anon_sym_restrict] = ACTIONS(1106), + [anon_sym__Atomic] = ACTIONS(1106), + [anon_sym_signed] = ACTIONS(1106), + [anon_sym_unsigned] = ACTIONS(1106), + [anon_sym_long] = ACTIONS(1106), + [anon_sym_short] = ACTIONS(1106), + [sym_primitive_type] = ACTIONS(1106), + [anon_sym_enum] = ACTIONS(1106), + [anon_sym_struct] = ACTIONS(1106), + [anon_sym_union] = ACTIONS(1106), + [anon_sym_if] = ACTIONS(1106), + [anon_sym_switch] = ACTIONS(1106), + [anon_sym_case] = ACTIONS(1106), + [anon_sym_default] = ACTIONS(1106), + [anon_sym_while] = ACTIONS(1106), + [anon_sym_do] = ACTIONS(1106), + [anon_sym_for] = ACTIONS(1106), + [anon_sym_return] = ACTIONS(1106), + [anon_sym_break] = ACTIONS(1106), + [anon_sym_continue] = ACTIONS(1106), + [anon_sym_goto] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1108), + [anon_sym_BANG] = ACTIONS(1108), + [anon_sym_TILDE] = ACTIONS(1108), + [anon_sym_DASH] = ACTIONS(1106), + [anon_sym_PLUS] = ACTIONS(1106), + [anon_sym_DASH_DASH] = ACTIONS(1108), + [anon_sym_PLUS_PLUS] = ACTIONS(1108), + [anon_sym_sizeof] = ACTIONS(1106), + [sym_number_literal] = ACTIONS(1108), + [anon_sym_L_SQUOTE] = ACTIONS(1108), + [anon_sym_u_SQUOTE] = ACTIONS(1108), + [anon_sym_U_SQUOTE] = ACTIONS(1108), + [anon_sym_u8_SQUOTE] = ACTIONS(1108), + [anon_sym_SQUOTE] = ACTIONS(1108), + [anon_sym_L_DQUOTE] = ACTIONS(1108), + [anon_sym_u_DQUOTE] = ACTIONS(1108), + [anon_sym_U_DQUOTE] = ACTIONS(1108), + [anon_sym_u8_DQUOTE] = ACTIONS(1108), + [anon_sym_DQUOTE] = ACTIONS(1108), + [sym_true] = ACTIONS(1106), + [sym_false] = ACTIONS(1106), + [sym_null] = ACTIONS(1106), + [sym_comment] = ACTIONS(3), + }, + [348] = { + [ts_builtin_sym_end] = ACTIONS(1152), + [sym_identifier] = ACTIONS(1150), + [aux_sym_preproc_include_token1] = ACTIONS(1150), + [aux_sym_preproc_def_token1] = ACTIONS(1150), + [aux_sym_preproc_if_token1] = ACTIONS(1150), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1150), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1150), + [sym_preproc_directive] = ACTIONS(1150), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym_typedef] = ACTIONS(1150), + [anon_sym_extern] = ACTIONS(1150), + [anon_sym___attribute__] = ACTIONS(1150), + [anon_sym_LPAREN2] = ACTIONS(1152), + [anon_sym_LBRACE] = ACTIONS(1152), + [anon_sym_STAR] = ACTIONS(1152), + [anon_sym_static] = ACTIONS(1150), + [anon_sym_auto] = ACTIONS(1150), + [anon_sym_register] = ACTIONS(1150), + [anon_sym_inline] = ACTIONS(1150), + [anon_sym_const] = ACTIONS(1150), + [anon_sym_volatile] = ACTIONS(1150), + [anon_sym_restrict] = ACTIONS(1150), + [anon_sym__Atomic] = ACTIONS(1150), + [anon_sym_signed] = ACTIONS(1150), + [anon_sym_unsigned] = ACTIONS(1150), + [anon_sym_long] = ACTIONS(1150), + [anon_sym_short] = ACTIONS(1150), + [sym_primitive_type] = ACTIONS(1150), + [anon_sym_enum] = ACTIONS(1150), + [anon_sym_struct] = ACTIONS(1150), + [anon_sym_union] = ACTIONS(1150), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(1150), + [anon_sym_case] = ACTIONS(1150), + [anon_sym_default] = ACTIONS(1150), + [anon_sym_while] = ACTIONS(1150), + [anon_sym_do] = ACTIONS(1150), + [anon_sym_for] = ACTIONS(1150), + [anon_sym_return] = ACTIONS(1150), + [anon_sym_break] = ACTIONS(1150), + [anon_sym_continue] = ACTIONS(1150), + [anon_sym_goto] = ACTIONS(1150), + [anon_sym_AMP] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_TILDE] = ACTIONS(1152), + [anon_sym_DASH] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1150), + [anon_sym_DASH_DASH] = ACTIONS(1152), + [anon_sym_PLUS_PLUS] = ACTIONS(1152), + [anon_sym_sizeof] = ACTIONS(1150), + [sym_number_literal] = ACTIONS(1152), + [anon_sym_L_SQUOTE] = ACTIONS(1152), + [anon_sym_u_SQUOTE] = ACTIONS(1152), + [anon_sym_U_SQUOTE] = ACTIONS(1152), + [anon_sym_u8_SQUOTE] = ACTIONS(1152), + [anon_sym_SQUOTE] = ACTIONS(1152), + [anon_sym_L_DQUOTE] = ACTIONS(1152), + [anon_sym_u_DQUOTE] = ACTIONS(1152), + [anon_sym_U_DQUOTE] = ACTIONS(1152), + [anon_sym_u8_DQUOTE] = ACTIONS(1152), + [anon_sym_DQUOTE] = ACTIONS(1152), + [sym_true] = ACTIONS(1150), + [sym_false] = ACTIONS(1150), + [sym_null] = ACTIONS(1150), + [sym_comment] = ACTIONS(3), + }, + [349] = { + [ts_builtin_sym_end] = ACTIONS(1180), + [sym_identifier] = ACTIONS(1178), + [aux_sym_preproc_include_token1] = ACTIONS(1178), + [aux_sym_preproc_def_token1] = ACTIONS(1178), + [aux_sym_preproc_if_token1] = ACTIONS(1178), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1178), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1178), + [sym_preproc_directive] = ACTIONS(1178), + [anon_sym_SEMI] = ACTIONS(1180), + [anon_sym_typedef] = ACTIONS(1178), + [anon_sym_extern] = ACTIONS(1178), + [anon_sym___attribute__] = ACTIONS(1178), + [anon_sym_LPAREN2] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(1180), + [anon_sym_STAR] = ACTIONS(1180), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_auto] = ACTIONS(1178), + [anon_sym_register] = ACTIONS(1178), + [anon_sym_inline] = ACTIONS(1178), + [anon_sym_const] = ACTIONS(1178), + [anon_sym_volatile] = ACTIONS(1178), + [anon_sym_restrict] = ACTIONS(1178), + [anon_sym__Atomic] = ACTIONS(1178), + [anon_sym_signed] = ACTIONS(1178), + [anon_sym_unsigned] = ACTIONS(1178), + [anon_sym_long] = ACTIONS(1178), + [anon_sym_short] = ACTIONS(1178), + [sym_primitive_type] = ACTIONS(1178), + [anon_sym_enum] = ACTIONS(1178), + [anon_sym_struct] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), + [anon_sym_if] = ACTIONS(1178), + [anon_sym_switch] = ACTIONS(1178), + [anon_sym_case] = ACTIONS(1178), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_while] = ACTIONS(1178), + [anon_sym_do] = ACTIONS(1178), + [anon_sym_for] = ACTIONS(1178), + [anon_sym_return] = ACTIONS(1178), + [anon_sym_break] = ACTIONS(1178), + [anon_sym_continue] = ACTIONS(1178), + [anon_sym_goto] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1180), + [anon_sym_BANG] = ACTIONS(1180), + [anon_sym_TILDE] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1178), + [anon_sym_PLUS] = ACTIONS(1178), + [anon_sym_DASH_DASH] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1180), + [anon_sym_sizeof] = ACTIONS(1178), + [sym_number_literal] = ACTIONS(1180), + [anon_sym_L_SQUOTE] = ACTIONS(1180), + [anon_sym_u_SQUOTE] = ACTIONS(1180), + [anon_sym_U_SQUOTE] = ACTIONS(1180), + [anon_sym_u8_SQUOTE] = ACTIONS(1180), + [anon_sym_SQUOTE] = ACTIONS(1180), + [anon_sym_L_DQUOTE] = ACTIONS(1180), + [anon_sym_u_DQUOTE] = ACTIONS(1180), + [anon_sym_U_DQUOTE] = ACTIONS(1180), + [anon_sym_u8_DQUOTE] = ACTIONS(1180), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym_true] = ACTIONS(1178), + [sym_false] = ACTIONS(1178), + [sym_null] = ACTIONS(1178), + [sym_comment] = ACTIONS(3), + }, + [350] = { + [ts_builtin_sym_end] = ACTIONS(1176), + [sym_identifier] = ACTIONS(1174), + [aux_sym_preproc_include_token1] = ACTIONS(1174), + [aux_sym_preproc_def_token1] = ACTIONS(1174), + [aux_sym_preproc_if_token1] = ACTIONS(1174), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1174), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1174), + [sym_preproc_directive] = ACTIONS(1174), + [anon_sym_SEMI] = ACTIONS(1176), + [anon_sym_typedef] = ACTIONS(1174), + [anon_sym_extern] = ACTIONS(1174), + [anon_sym___attribute__] = ACTIONS(1174), + [anon_sym_LPAREN2] = ACTIONS(1176), + [anon_sym_LBRACE] = ACTIONS(1176), + [anon_sym_STAR] = ACTIONS(1176), + [anon_sym_static] = ACTIONS(1174), + [anon_sym_auto] = ACTIONS(1174), + [anon_sym_register] = ACTIONS(1174), + [anon_sym_inline] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1174), + [anon_sym_volatile] = ACTIONS(1174), + [anon_sym_restrict] = ACTIONS(1174), + [anon_sym__Atomic] = ACTIONS(1174), + [anon_sym_signed] = ACTIONS(1174), + [anon_sym_unsigned] = ACTIONS(1174), + [anon_sym_long] = ACTIONS(1174), + [anon_sym_short] = ACTIONS(1174), + [sym_primitive_type] = ACTIONS(1174), + [anon_sym_enum] = ACTIONS(1174), + [anon_sym_struct] = ACTIONS(1174), + [anon_sym_union] = ACTIONS(1174), + [anon_sym_if] = ACTIONS(1174), + [anon_sym_switch] = ACTIONS(1174), + [anon_sym_case] = ACTIONS(1174), + [anon_sym_default] = ACTIONS(1174), + [anon_sym_while] = ACTIONS(1174), + [anon_sym_do] = ACTIONS(1174), + [anon_sym_for] = ACTIONS(1174), + [anon_sym_return] = ACTIONS(1174), + [anon_sym_break] = ACTIONS(1174), + [anon_sym_continue] = ACTIONS(1174), + [anon_sym_goto] = ACTIONS(1174), + [anon_sym_AMP] = ACTIONS(1176), + [anon_sym_BANG] = ACTIONS(1176), + [anon_sym_TILDE] = ACTIONS(1176), + [anon_sym_DASH] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1174), + [anon_sym_DASH_DASH] = ACTIONS(1176), + [anon_sym_PLUS_PLUS] = ACTIONS(1176), + [anon_sym_sizeof] = ACTIONS(1174), + [sym_number_literal] = ACTIONS(1176), + [anon_sym_L_SQUOTE] = ACTIONS(1176), + [anon_sym_u_SQUOTE] = ACTIONS(1176), + [anon_sym_U_SQUOTE] = ACTIONS(1176), + [anon_sym_u8_SQUOTE] = ACTIONS(1176), + [anon_sym_SQUOTE] = ACTIONS(1176), + [anon_sym_L_DQUOTE] = ACTIONS(1176), + [anon_sym_u_DQUOTE] = ACTIONS(1176), + [anon_sym_U_DQUOTE] = ACTIONS(1176), + [anon_sym_u8_DQUOTE] = ACTIONS(1176), + [anon_sym_DQUOTE] = ACTIONS(1176), + [sym_true] = ACTIONS(1174), + [sym_false] = ACTIONS(1174), + [sym_null] = ACTIONS(1174), + [sym_comment] = ACTIONS(3), + }, + [351] = { + [ts_builtin_sym_end] = ACTIONS(1168), + [sym_identifier] = ACTIONS(1166), + [aux_sym_preproc_include_token1] = ACTIONS(1166), + [aux_sym_preproc_def_token1] = ACTIONS(1166), + [aux_sym_preproc_if_token1] = ACTIONS(1166), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1166), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1166), + [sym_preproc_directive] = ACTIONS(1166), + [anon_sym_SEMI] = ACTIONS(1168), + [anon_sym_typedef] = ACTIONS(1166), + [anon_sym_extern] = ACTIONS(1166), + [anon_sym___attribute__] = ACTIONS(1166), + [anon_sym_LPAREN2] = ACTIONS(1168), + [anon_sym_LBRACE] = ACTIONS(1168), + [anon_sym_STAR] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(1166), + [anon_sym_auto] = ACTIONS(1166), + [anon_sym_register] = ACTIONS(1166), + [anon_sym_inline] = ACTIONS(1166), + [anon_sym_const] = ACTIONS(1166), + [anon_sym_volatile] = ACTIONS(1166), + [anon_sym_restrict] = ACTIONS(1166), + [anon_sym__Atomic] = ACTIONS(1166), + [anon_sym_signed] = ACTIONS(1166), + [anon_sym_unsigned] = ACTIONS(1166), + [anon_sym_long] = ACTIONS(1166), + [anon_sym_short] = ACTIONS(1166), + [sym_primitive_type] = ACTIONS(1166), + [anon_sym_enum] = ACTIONS(1166), + [anon_sym_struct] = ACTIONS(1166), + [anon_sym_union] = ACTIONS(1166), + [anon_sym_if] = ACTIONS(1166), + [anon_sym_switch] = ACTIONS(1166), + [anon_sym_case] = ACTIONS(1166), + [anon_sym_default] = ACTIONS(1166), + [anon_sym_while] = ACTIONS(1166), + [anon_sym_do] = ACTIONS(1166), + [anon_sym_for] = ACTIONS(1166), + [anon_sym_return] = ACTIONS(1166), + [anon_sym_break] = ACTIONS(1166), + [anon_sym_continue] = ACTIONS(1166), + [anon_sym_goto] = ACTIONS(1166), + [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_BANG] = ACTIONS(1168), + [anon_sym_TILDE] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1168), + [anon_sym_sizeof] = ACTIONS(1166), + [sym_number_literal] = ACTIONS(1168), + [anon_sym_L_SQUOTE] = ACTIONS(1168), + [anon_sym_u_SQUOTE] = ACTIONS(1168), + [anon_sym_U_SQUOTE] = ACTIONS(1168), + [anon_sym_u8_SQUOTE] = ACTIONS(1168), + [anon_sym_SQUOTE] = ACTIONS(1168), + [anon_sym_L_DQUOTE] = ACTIONS(1168), + [anon_sym_u_DQUOTE] = ACTIONS(1168), + [anon_sym_U_DQUOTE] = ACTIONS(1168), + [anon_sym_u8_DQUOTE] = ACTIONS(1168), + [anon_sym_DQUOTE] = ACTIONS(1168), + [sym_true] = ACTIONS(1166), + [sym_false] = ACTIONS(1166), + [sym_null] = ACTIONS(1166), + [sym_comment] = ACTIONS(3), + }, + [352] = { + [ts_builtin_sym_end] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1114), + [aux_sym_preproc_include_token1] = ACTIONS(1114), + [aux_sym_preproc_def_token1] = ACTIONS(1114), + [aux_sym_preproc_if_token1] = ACTIONS(1114), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1114), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1114), + [sym_preproc_directive] = ACTIONS(1114), + [anon_sym_SEMI] = ACTIONS(1116), + [anon_sym_typedef] = ACTIONS(1114), + [anon_sym_extern] = ACTIONS(1114), + [anon_sym___attribute__] = ACTIONS(1114), + [anon_sym_LPAREN2] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(1116), + [anon_sym_STAR] = ACTIONS(1116), + [anon_sym_static] = ACTIONS(1114), + [anon_sym_auto] = ACTIONS(1114), + [anon_sym_register] = ACTIONS(1114), + [anon_sym_inline] = ACTIONS(1114), + [anon_sym_const] = ACTIONS(1114), + [anon_sym_volatile] = ACTIONS(1114), + [anon_sym_restrict] = ACTIONS(1114), + [anon_sym__Atomic] = ACTIONS(1114), + [anon_sym_signed] = ACTIONS(1114), + [anon_sym_unsigned] = ACTIONS(1114), + [anon_sym_long] = ACTIONS(1114), + [anon_sym_short] = ACTIONS(1114), + [sym_primitive_type] = ACTIONS(1114), + [anon_sym_enum] = ACTIONS(1114), + [anon_sym_struct] = ACTIONS(1114), + [anon_sym_union] = ACTIONS(1114), + [anon_sym_if] = ACTIONS(1114), + [anon_sym_switch] = ACTIONS(1114), + [anon_sym_case] = ACTIONS(1114), + [anon_sym_default] = ACTIONS(1114), + [anon_sym_while] = ACTIONS(1114), + [anon_sym_do] = ACTIONS(1114), + [anon_sym_for] = ACTIONS(1114), + [anon_sym_return] = ACTIONS(1114), + [anon_sym_break] = ACTIONS(1114), + [anon_sym_continue] = ACTIONS(1114), + [anon_sym_goto] = ACTIONS(1114), + [anon_sym_AMP] = ACTIONS(1116), + [anon_sym_BANG] = ACTIONS(1116), + [anon_sym_TILDE] = ACTIONS(1116), + [anon_sym_DASH] = ACTIONS(1114), + [anon_sym_PLUS] = ACTIONS(1114), + [anon_sym_DASH_DASH] = ACTIONS(1116), + [anon_sym_PLUS_PLUS] = ACTIONS(1116), + [anon_sym_sizeof] = ACTIONS(1114), + [sym_number_literal] = ACTIONS(1116), + [anon_sym_L_SQUOTE] = ACTIONS(1116), + [anon_sym_u_SQUOTE] = ACTIONS(1116), + [anon_sym_U_SQUOTE] = ACTIONS(1116), + [anon_sym_u8_SQUOTE] = ACTIONS(1116), + [anon_sym_SQUOTE] = ACTIONS(1116), + [anon_sym_L_DQUOTE] = ACTIONS(1116), + [anon_sym_u_DQUOTE] = ACTIONS(1116), + [anon_sym_U_DQUOTE] = ACTIONS(1116), + [anon_sym_u8_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(1116), + [sym_true] = ACTIONS(1114), + [sym_false] = ACTIONS(1114), + [sym_null] = ACTIONS(1114), + [sym_comment] = ACTIONS(3), + }, + [353] = { + [sym_identifier] = ACTIONS(1102), + [aux_sym_preproc_include_token1] = ACTIONS(1102), + [aux_sym_preproc_def_token1] = ACTIONS(1102), + [aux_sym_preproc_if_token1] = ACTIONS(1102), + [aux_sym_preproc_if_token2] = ACTIONS(1102), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1102), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1102), + [sym_preproc_directive] = ACTIONS(1102), + [anon_sym_SEMI] = ACTIONS(1104), + [anon_sym_typedef] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1102), + [anon_sym___attribute__] = ACTIONS(1102), + [anon_sym_LPAREN2] = ACTIONS(1104), + [anon_sym_LBRACE] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(1104), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_auto] = ACTIONS(1102), + [anon_sym_register] = ACTIONS(1102), + [anon_sym_inline] = ACTIONS(1102), + [anon_sym_const] = ACTIONS(1102), + [anon_sym_volatile] = ACTIONS(1102), + [anon_sym_restrict] = ACTIONS(1102), + [anon_sym__Atomic] = ACTIONS(1102), + [anon_sym_signed] = ACTIONS(1102), + [anon_sym_unsigned] = ACTIONS(1102), + [anon_sym_long] = ACTIONS(1102), + [anon_sym_short] = ACTIONS(1102), + [sym_primitive_type] = ACTIONS(1102), + [anon_sym_enum] = ACTIONS(1102), + [anon_sym_struct] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1102), + [anon_sym_if] = ACTIONS(1102), + [anon_sym_switch] = ACTIONS(1102), + [anon_sym_case] = ACTIONS(1102), + [anon_sym_default] = ACTIONS(1102), + [anon_sym_while] = ACTIONS(1102), + [anon_sym_do] = ACTIONS(1102), + [anon_sym_for] = ACTIONS(1102), + [anon_sym_return] = ACTIONS(1102), + [anon_sym_break] = ACTIONS(1102), + [anon_sym_continue] = ACTIONS(1102), + [anon_sym_goto] = ACTIONS(1102), + [anon_sym_AMP] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(1104), + [anon_sym_TILDE] = ACTIONS(1104), + [anon_sym_DASH] = ACTIONS(1102), + [anon_sym_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1104), + [anon_sym_PLUS_PLUS] = ACTIONS(1104), + [anon_sym_sizeof] = ACTIONS(1102), + [sym_number_literal] = ACTIONS(1104), + [anon_sym_L_SQUOTE] = ACTIONS(1104), + [anon_sym_u_SQUOTE] = ACTIONS(1104), + [anon_sym_U_SQUOTE] = ACTIONS(1104), + [anon_sym_u8_SQUOTE] = ACTIONS(1104), + [anon_sym_SQUOTE] = ACTIONS(1104), + [anon_sym_L_DQUOTE] = ACTIONS(1104), + [anon_sym_u_DQUOTE] = ACTIONS(1104), + [anon_sym_U_DQUOTE] = ACTIONS(1104), + [anon_sym_u8_DQUOTE] = ACTIONS(1104), + [anon_sym_DQUOTE] = ACTIONS(1104), + [sym_true] = ACTIONS(1102), + [sym_false] = ACTIONS(1102), + [sym_null] = ACTIONS(1102), + [sym_comment] = ACTIONS(3), + }, + [354] = { + [sym_identifier] = ACTIONS(1170), + [aux_sym_preproc_include_token1] = ACTIONS(1170), + [aux_sym_preproc_def_token1] = ACTIONS(1170), + [aux_sym_preproc_if_token1] = ACTIONS(1170), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1170), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1170), + [sym_preproc_directive] = ACTIONS(1170), + [anon_sym_SEMI] = ACTIONS(1172), + [anon_sym_typedef] = ACTIONS(1170), + [anon_sym_extern] = ACTIONS(1170), + [anon_sym___attribute__] = ACTIONS(1170), + [anon_sym_LPAREN2] = ACTIONS(1172), + [anon_sym_LBRACE] = ACTIONS(1172), + [anon_sym_RBRACE] = ACTIONS(1172), + [anon_sym_STAR] = ACTIONS(1172), + [anon_sym_static] = ACTIONS(1170), + [anon_sym_auto] = ACTIONS(1170), + [anon_sym_register] = ACTIONS(1170), + [anon_sym_inline] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1170), + [anon_sym_volatile] = ACTIONS(1170), + [anon_sym_restrict] = ACTIONS(1170), + [anon_sym__Atomic] = ACTIONS(1170), + [anon_sym_signed] = ACTIONS(1170), + [anon_sym_unsigned] = ACTIONS(1170), + [anon_sym_long] = ACTIONS(1170), + [anon_sym_short] = ACTIONS(1170), + [sym_primitive_type] = ACTIONS(1170), + [anon_sym_enum] = ACTIONS(1170), + [anon_sym_struct] = ACTIONS(1170), + [anon_sym_union] = ACTIONS(1170), + [anon_sym_if] = ACTIONS(1170), + [anon_sym_switch] = ACTIONS(1170), + [anon_sym_case] = ACTIONS(1170), + [anon_sym_default] = ACTIONS(1170), + [anon_sym_while] = ACTIONS(1170), + [anon_sym_do] = ACTIONS(1170), + [anon_sym_for] = ACTIONS(1170), + [anon_sym_return] = ACTIONS(1170), + [anon_sym_break] = ACTIONS(1170), + [anon_sym_continue] = ACTIONS(1170), + [anon_sym_goto] = ACTIONS(1170), + [anon_sym_AMP] = ACTIONS(1172), + [anon_sym_BANG] = ACTIONS(1172), + [anon_sym_TILDE] = ACTIONS(1172), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH_DASH] = ACTIONS(1172), + [anon_sym_PLUS_PLUS] = ACTIONS(1172), + [anon_sym_sizeof] = ACTIONS(1170), + [sym_number_literal] = ACTIONS(1172), + [anon_sym_L_SQUOTE] = ACTIONS(1172), + [anon_sym_u_SQUOTE] = ACTIONS(1172), + [anon_sym_U_SQUOTE] = ACTIONS(1172), + [anon_sym_u8_SQUOTE] = ACTIONS(1172), + [anon_sym_SQUOTE] = ACTIONS(1172), + [anon_sym_L_DQUOTE] = ACTIONS(1172), + [anon_sym_u_DQUOTE] = ACTIONS(1172), + [anon_sym_U_DQUOTE] = ACTIONS(1172), + [anon_sym_u8_DQUOTE] = ACTIONS(1172), + [anon_sym_DQUOTE] = ACTIONS(1172), + [sym_true] = ACTIONS(1170), + [sym_false] = ACTIONS(1170), + [sym_null] = ACTIONS(1170), + [sym_comment] = ACTIONS(3), + }, + [355] = { + [sym_identifier] = ACTIONS(1114), + [aux_sym_preproc_include_token1] = ACTIONS(1114), + [aux_sym_preproc_def_token1] = ACTIONS(1114), + [aux_sym_preproc_if_token1] = ACTIONS(1114), + [aux_sym_preproc_if_token2] = ACTIONS(1114), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1114), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1114), + [sym_preproc_directive] = ACTIONS(1114), + [anon_sym_SEMI] = ACTIONS(1116), + [anon_sym_typedef] = ACTIONS(1114), + [anon_sym_extern] = ACTIONS(1114), + [anon_sym___attribute__] = ACTIONS(1114), + [anon_sym_LPAREN2] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(1116), + [anon_sym_STAR] = ACTIONS(1116), + [anon_sym_static] = ACTIONS(1114), + [anon_sym_auto] = ACTIONS(1114), + [anon_sym_register] = ACTIONS(1114), + [anon_sym_inline] = ACTIONS(1114), + [anon_sym_const] = ACTIONS(1114), + [anon_sym_volatile] = ACTIONS(1114), + [anon_sym_restrict] = ACTIONS(1114), + [anon_sym__Atomic] = ACTIONS(1114), + [anon_sym_signed] = ACTIONS(1114), + [anon_sym_unsigned] = ACTIONS(1114), + [anon_sym_long] = ACTIONS(1114), + [anon_sym_short] = ACTIONS(1114), + [sym_primitive_type] = ACTIONS(1114), + [anon_sym_enum] = ACTIONS(1114), + [anon_sym_struct] = ACTIONS(1114), + [anon_sym_union] = ACTIONS(1114), + [anon_sym_if] = ACTIONS(1114), + [anon_sym_switch] = ACTIONS(1114), + [anon_sym_case] = ACTIONS(1114), + [anon_sym_default] = ACTIONS(1114), + [anon_sym_while] = ACTIONS(1114), + [anon_sym_do] = ACTIONS(1114), + [anon_sym_for] = ACTIONS(1114), + [anon_sym_return] = ACTIONS(1114), + [anon_sym_break] = ACTIONS(1114), + [anon_sym_continue] = ACTIONS(1114), + [anon_sym_goto] = ACTIONS(1114), + [anon_sym_AMP] = ACTIONS(1116), + [anon_sym_BANG] = ACTIONS(1116), + [anon_sym_TILDE] = ACTIONS(1116), + [anon_sym_DASH] = ACTIONS(1114), + [anon_sym_PLUS] = ACTIONS(1114), + [anon_sym_DASH_DASH] = ACTIONS(1116), + [anon_sym_PLUS_PLUS] = ACTIONS(1116), + [anon_sym_sizeof] = ACTIONS(1114), + [sym_number_literal] = ACTIONS(1116), + [anon_sym_L_SQUOTE] = ACTIONS(1116), + [anon_sym_u_SQUOTE] = ACTIONS(1116), + [anon_sym_U_SQUOTE] = ACTIONS(1116), + [anon_sym_u8_SQUOTE] = ACTIONS(1116), + [anon_sym_SQUOTE] = ACTIONS(1116), + [anon_sym_L_DQUOTE] = ACTIONS(1116), + [anon_sym_u_DQUOTE] = ACTIONS(1116), + [anon_sym_U_DQUOTE] = ACTIONS(1116), + [anon_sym_u8_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(1116), + [sym_true] = ACTIONS(1114), + [sym_false] = ACTIONS(1114), + [sym_null] = ACTIONS(1114), + [sym_comment] = ACTIONS(3), + }, + [356] = { + [sym_identifier] = ACTIONS(1118), + [aux_sym_preproc_include_token1] = ACTIONS(1118), + [aux_sym_preproc_def_token1] = ACTIONS(1118), + [aux_sym_preproc_if_token1] = ACTIONS(1118), + [aux_sym_preproc_if_token2] = ACTIONS(1118), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1118), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1118), + [sym_preproc_directive] = ACTIONS(1118), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_typedef] = ACTIONS(1118), + [anon_sym_extern] = ACTIONS(1118), + [anon_sym___attribute__] = ACTIONS(1118), + [anon_sym_LPAREN2] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1120), + [anon_sym_STAR] = ACTIONS(1120), + [anon_sym_static] = ACTIONS(1118), + [anon_sym_auto] = ACTIONS(1118), + [anon_sym_register] = ACTIONS(1118), + [anon_sym_inline] = ACTIONS(1118), + [anon_sym_const] = ACTIONS(1118), + [anon_sym_volatile] = ACTIONS(1118), + [anon_sym_restrict] = ACTIONS(1118), + [anon_sym__Atomic] = ACTIONS(1118), + [anon_sym_signed] = ACTIONS(1118), + [anon_sym_unsigned] = ACTIONS(1118), + [anon_sym_long] = ACTIONS(1118), + [anon_sym_short] = ACTIONS(1118), + [sym_primitive_type] = ACTIONS(1118), + [anon_sym_enum] = ACTIONS(1118), + [anon_sym_struct] = ACTIONS(1118), + [anon_sym_union] = ACTIONS(1118), + [anon_sym_if] = ACTIONS(1118), + [anon_sym_switch] = ACTIONS(1118), + [anon_sym_case] = ACTIONS(1118), + [anon_sym_default] = ACTIONS(1118), + [anon_sym_while] = ACTIONS(1118), + [anon_sym_do] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1118), + [anon_sym_return] = ACTIONS(1118), + [anon_sym_break] = ACTIONS(1118), + [anon_sym_continue] = ACTIONS(1118), + [anon_sym_goto] = ACTIONS(1118), + [anon_sym_AMP] = ACTIONS(1120), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_DASH] = ACTIONS(1118), + [anon_sym_PLUS] = ACTIONS(1118), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_sizeof] = ACTIONS(1118), + [sym_number_literal] = ACTIONS(1120), + [anon_sym_L_SQUOTE] = ACTIONS(1120), + [anon_sym_u_SQUOTE] = ACTIONS(1120), + [anon_sym_U_SQUOTE] = ACTIONS(1120), + [anon_sym_u8_SQUOTE] = ACTIONS(1120), + [anon_sym_SQUOTE] = ACTIONS(1120), + [anon_sym_L_DQUOTE] = ACTIONS(1120), + [anon_sym_u_DQUOTE] = ACTIONS(1120), + [anon_sym_U_DQUOTE] = ACTIONS(1120), + [anon_sym_u8_DQUOTE] = ACTIONS(1120), + [anon_sym_DQUOTE] = ACTIONS(1120), + [sym_true] = ACTIONS(1118), + [sym_false] = ACTIONS(1118), + [sym_null] = ACTIONS(1118), + [sym_comment] = ACTIONS(3), + }, + [357] = { + [sym_identifier] = ACTIONS(1094), + [aux_sym_preproc_include_token1] = ACTIONS(1094), + [aux_sym_preproc_def_token1] = ACTIONS(1094), + [aux_sym_preproc_if_token1] = ACTIONS(1094), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1094), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1094), + [sym_preproc_directive] = ACTIONS(1094), + [anon_sym_SEMI] = ACTIONS(1096), + [anon_sym_typedef] = ACTIONS(1094), + [anon_sym_extern] = ACTIONS(1094), + [anon_sym___attribute__] = ACTIONS(1094), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_LBRACE] = ACTIONS(1096), + [anon_sym_RBRACE] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1096), + [anon_sym_static] = ACTIONS(1094), + [anon_sym_auto] = ACTIONS(1094), + [anon_sym_register] = ACTIONS(1094), + [anon_sym_inline] = ACTIONS(1094), + [anon_sym_const] = ACTIONS(1094), + [anon_sym_volatile] = ACTIONS(1094), + [anon_sym_restrict] = ACTIONS(1094), + [anon_sym__Atomic] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(1094), + [anon_sym_unsigned] = ACTIONS(1094), + [anon_sym_long] = ACTIONS(1094), + [anon_sym_short] = ACTIONS(1094), + [sym_primitive_type] = ACTIONS(1094), + [anon_sym_enum] = ACTIONS(1094), + [anon_sym_struct] = ACTIONS(1094), + [anon_sym_union] = ACTIONS(1094), + [anon_sym_if] = ACTIONS(1094), + [anon_sym_switch] = ACTIONS(1094), + [anon_sym_case] = ACTIONS(1094), + [anon_sym_default] = ACTIONS(1094), + [anon_sym_while] = ACTIONS(1094), + [anon_sym_do] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1094), + [anon_sym_return] = ACTIONS(1094), + [anon_sym_break] = ACTIONS(1094), + [anon_sym_continue] = ACTIONS(1094), + [anon_sym_goto] = ACTIONS(1094), + [anon_sym_AMP] = ACTIONS(1096), + [anon_sym_BANG] = ACTIONS(1096), + [anon_sym_TILDE] = ACTIONS(1096), + [anon_sym_DASH] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_PLUS_PLUS] = ACTIONS(1096), + [anon_sym_sizeof] = ACTIONS(1094), + [sym_number_literal] = ACTIONS(1096), + [anon_sym_L_SQUOTE] = ACTIONS(1096), + [anon_sym_u_SQUOTE] = ACTIONS(1096), + [anon_sym_U_SQUOTE] = ACTIONS(1096), + [anon_sym_u8_SQUOTE] = ACTIONS(1096), + [anon_sym_SQUOTE] = ACTIONS(1096), + [anon_sym_L_DQUOTE] = ACTIONS(1096), + [anon_sym_u_DQUOTE] = ACTIONS(1096), + [anon_sym_U_DQUOTE] = ACTIONS(1096), + [anon_sym_u8_DQUOTE] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(1096), + [sym_true] = ACTIONS(1094), + [sym_false] = ACTIONS(1094), + [sym_null] = ACTIONS(1094), + [sym_comment] = ACTIONS(3), + }, + [358] = { + [sym_identifier] = ACTIONS(1098), + [aux_sym_preproc_include_token1] = ACTIONS(1098), + [aux_sym_preproc_def_token1] = ACTIONS(1098), + [aux_sym_preproc_if_token1] = ACTIONS(1098), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1098), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1098), + [sym_preproc_directive] = ACTIONS(1098), + [anon_sym_SEMI] = ACTIONS(1100), + [anon_sym_typedef] = ACTIONS(1098), + [anon_sym_extern] = ACTIONS(1098), + [anon_sym___attribute__] = ACTIONS(1098), + [anon_sym_LPAREN2] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1100), + [anon_sym_RBRACE] = ACTIONS(1100), + [anon_sym_STAR] = ACTIONS(1100), + [anon_sym_static] = ACTIONS(1098), + [anon_sym_auto] = ACTIONS(1098), + [anon_sym_register] = ACTIONS(1098), + [anon_sym_inline] = ACTIONS(1098), + [anon_sym_const] = ACTIONS(1098), + [anon_sym_volatile] = ACTIONS(1098), + [anon_sym_restrict] = ACTIONS(1098), + [anon_sym__Atomic] = ACTIONS(1098), + [anon_sym_signed] = ACTIONS(1098), + [anon_sym_unsigned] = ACTIONS(1098), + [anon_sym_long] = ACTIONS(1098), + [anon_sym_short] = ACTIONS(1098), + [sym_primitive_type] = ACTIONS(1098), + [anon_sym_enum] = ACTIONS(1098), + [anon_sym_struct] = ACTIONS(1098), + [anon_sym_union] = ACTIONS(1098), + [anon_sym_if] = ACTIONS(1098), + [anon_sym_switch] = ACTIONS(1098), + [anon_sym_case] = ACTIONS(1098), + [anon_sym_default] = ACTIONS(1098), + [anon_sym_while] = ACTIONS(1098), + [anon_sym_do] = ACTIONS(1098), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_return] = ACTIONS(1098), + [anon_sym_break] = ACTIONS(1098), + [anon_sym_continue] = ACTIONS(1098), + [anon_sym_goto] = ACTIONS(1098), + [anon_sym_AMP] = ACTIONS(1100), + [anon_sym_BANG] = ACTIONS(1100), + [anon_sym_TILDE] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1098), + [anon_sym_PLUS] = ACTIONS(1098), + [anon_sym_DASH_DASH] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1100), + [anon_sym_sizeof] = ACTIONS(1098), + [sym_number_literal] = ACTIONS(1100), + [anon_sym_L_SQUOTE] = ACTIONS(1100), + [anon_sym_u_SQUOTE] = ACTIONS(1100), + [anon_sym_U_SQUOTE] = ACTIONS(1100), + [anon_sym_u8_SQUOTE] = ACTIONS(1100), + [anon_sym_SQUOTE] = ACTIONS(1100), + [anon_sym_L_DQUOTE] = ACTIONS(1100), + [anon_sym_u_DQUOTE] = ACTIONS(1100), + [anon_sym_U_DQUOTE] = ACTIONS(1100), + [anon_sym_u8_DQUOTE] = ACTIONS(1100), + [anon_sym_DQUOTE] = ACTIONS(1100), + [sym_true] = ACTIONS(1098), + [sym_false] = ACTIONS(1098), + [sym_null] = ACTIONS(1098), + [sym_comment] = ACTIONS(3), + }, + [359] = { + [ts_builtin_sym_end] = ACTIONS(1124), + [sym_identifier] = ACTIONS(1122), + [aux_sym_preproc_include_token1] = ACTIONS(1122), + [aux_sym_preproc_def_token1] = ACTIONS(1122), + [aux_sym_preproc_if_token1] = ACTIONS(1122), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1122), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1122), + [sym_preproc_directive] = ACTIONS(1122), + [anon_sym_SEMI] = ACTIONS(1124), + [anon_sym_typedef] = ACTIONS(1122), + [anon_sym_extern] = ACTIONS(1122), + [anon_sym___attribute__] = ACTIONS(1122), + [anon_sym_LPAREN2] = ACTIONS(1124), + [anon_sym_LBRACE] = ACTIONS(1124), + [anon_sym_STAR] = ACTIONS(1124), + [anon_sym_static] = ACTIONS(1122), + [anon_sym_auto] = ACTIONS(1122), + [anon_sym_register] = ACTIONS(1122), + [anon_sym_inline] = ACTIONS(1122), + [anon_sym_const] = ACTIONS(1122), + [anon_sym_volatile] = ACTIONS(1122), + [anon_sym_restrict] = ACTIONS(1122), + [anon_sym__Atomic] = ACTIONS(1122), + [anon_sym_signed] = ACTIONS(1122), + [anon_sym_unsigned] = ACTIONS(1122), + [anon_sym_long] = ACTIONS(1122), + [anon_sym_short] = ACTIONS(1122), + [sym_primitive_type] = ACTIONS(1122), + [anon_sym_enum] = ACTIONS(1122), + [anon_sym_struct] = ACTIONS(1122), + [anon_sym_union] = ACTIONS(1122), + [anon_sym_if] = ACTIONS(1122), + [anon_sym_switch] = ACTIONS(1122), + [anon_sym_case] = ACTIONS(1122), + [anon_sym_default] = ACTIONS(1122), + [anon_sym_while] = ACTIONS(1122), + [anon_sym_do] = ACTIONS(1122), + [anon_sym_for] = ACTIONS(1122), + [anon_sym_return] = ACTIONS(1122), + [anon_sym_break] = ACTIONS(1122), + [anon_sym_continue] = ACTIONS(1122), + [anon_sym_goto] = ACTIONS(1122), + [anon_sym_AMP] = ACTIONS(1124), + [anon_sym_BANG] = ACTIONS(1124), + [anon_sym_TILDE] = ACTIONS(1124), + [anon_sym_DASH] = ACTIONS(1122), + [anon_sym_PLUS] = ACTIONS(1122), + [anon_sym_DASH_DASH] = ACTIONS(1124), + [anon_sym_PLUS_PLUS] = ACTIONS(1124), + [anon_sym_sizeof] = ACTIONS(1122), + [sym_number_literal] = ACTIONS(1124), + [anon_sym_L_SQUOTE] = ACTIONS(1124), + [anon_sym_u_SQUOTE] = ACTIONS(1124), + [anon_sym_U_SQUOTE] = ACTIONS(1124), + [anon_sym_u8_SQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1124), + [anon_sym_L_DQUOTE] = ACTIONS(1124), + [anon_sym_u_DQUOTE] = ACTIONS(1124), + [anon_sym_U_DQUOTE] = ACTIONS(1124), + [anon_sym_u8_DQUOTE] = ACTIONS(1124), + [anon_sym_DQUOTE] = ACTIONS(1124), + [sym_true] = ACTIONS(1122), + [sym_false] = ACTIONS(1122), + [sym_null] = ACTIONS(1122), + [sym_comment] = ACTIONS(3), + }, + [360] = { + [sym_identifier] = ACTIONS(1130), + [aux_sym_preproc_include_token1] = ACTIONS(1130), + [aux_sym_preproc_def_token1] = ACTIONS(1130), + [aux_sym_preproc_if_token1] = ACTIONS(1130), + [aux_sym_preproc_if_token2] = ACTIONS(1130), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1130), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1130), + [sym_preproc_directive] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(1132), + [anon_sym_typedef] = ACTIONS(1130), + [anon_sym_extern] = ACTIONS(1130), + [anon_sym___attribute__] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_STAR] = ACTIONS(1132), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_auto] = ACTIONS(1130), + [anon_sym_register] = ACTIONS(1130), + [anon_sym_inline] = ACTIONS(1130), + [anon_sym_const] = ACTIONS(1130), + [anon_sym_volatile] = ACTIONS(1130), + [anon_sym_restrict] = ACTIONS(1130), + [anon_sym__Atomic] = ACTIONS(1130), + [anon_sym_signed] = ACTIONS(1130), + [anon_sym_unsigned] = ACTIONS(1130), + [anon_sym_long] = ACTIONS(1130), + [anon_sym_short] = ACTIONS(1130), + [sym_primitive_type] = ACTIONS(1130), + [anon_sym_enum] = ACTIONS(1130), + [anon_sym_struct] = ACTIONS(1130), + [anon_sym_union] = ACTIONS(1130), + [anon_sym_if] = ACTIONS(1130), + [anon_sym_switch] = ACTIONS(1130), + [anon_sym_case] = ACTIONS(1130), + [anon_sym_default] = ACTIONS(1130), + [anon_sym_while] = ACTIONS(1130), + [anon_sym_do] = ACTIONS(1130), + [anon_sym_for] = ACTIONS(1130), + [anon_sym_return] = ACTIONS(1130), + [anon_sym_break] = ACTIONS(1130), + [anon_sym_continue] = ACTIONS(1130), + [anon_sym_goto] = ACTIONS(1130), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_BANG] = ACTIONS(1132), + [anon_sym_TILDE] = ACTIONS(1132), + [anon_sym_DASH] = ACTIONS(1130), + [anon_sym_PLUS] = ACTIONS(1130), + [anon_sym_DASH_DASH] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1132), + [anon_sym_sizeof] = ACTIONS(1130), + [sym_number_literal] = ACTIONS(1132), + [anon_sym_L_SQUOTE] = ACTIONS(1132), + [anon_sym_u_SQUOTE] = ACTIONS(1132), + [anon_sym_U_SQUOTE] = ACTIONS(1132), + [anon_sym_u8_SQUOTE] = ACTIONS(1132), + [anon_sym_SQUOTE] = ACTIONS(1132), + [anon_sym_L_DQUOTE] = ACTIONS(1132), + [anon_sym_u_DQUOTE] = ACTIONS(1132), + [anon_sym_U_DQUOTE] = ACTIONS(1132), + [anon_sym_u8_DQUOTE] = ACTIONS(1132), + [anon_sym_DQUOTE] = ACTIONS(1132), + [sym_true] = ACTIONS(1130), + [sym_false] = ACTIONS(1130), + [sym_null] = ACTIONS(1130), + [sym_comment] = ACTIONS(3), + }, +}; + +static uint16_t ts_small_parse_table[] = { + [0] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -35879,17 +33802,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(958), 1, sym_identifier, - ACTIONS(1328), 1, + ACTIONS(1198), 1, anon_sym_COMMA, - ACTIONS(1330), 1, + ACTIONS(1200), 1, anon_sym_RBRACE, - ACTIONS(1332), 1, + ACTIONS(1202), 1, anon_sym_LBRACK, - ACTIONS(1334), 1, + ACTIONS(1204), 1, anon_sym_DOT, - ACTIONS(1336), 1, + ACTIONS(1206), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, @@ -35903,162 +33826,48 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - STATE(912), 2, + STATE(913), 2, sym_initializer_list, sym_initializer_pair, - ACTIONS(1338), 3, + ACTIONS(1208), 3, sym_true, sym_false, sym_null, - STATE(836), 3, + STATE(845), 3, sym_subscript_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(571), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [26212] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 2, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(387), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(1342), 13, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1340), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [26270] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(25), 1, - anon_sym___attribute__, - ACTIONS(41), 1, - anon_sym_enum, - ACTIONS(43), 1, - anon_sym_struct, - ACTIONS(45), 1, - anon_sym_union, - ACTIONS(648), 1, - sym_primitive_type, - ACTIONS(1226), 1, - sym_identifier, - ACTIONS(1344), 1, - aux_sym_preproc_def_token1, - ACTIONS(1346), 1, - aux_sym_preproc_if_token1, - ACTIONS(1348), 1, - aux_sym_preproc_if_token2, - ACTIONS(1352), 1, - sym_preproc_directive, - STATE(707), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(772), 1, - sym__declaration_specifiers, - ACTIONS(1350), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(35), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(37), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(568), 4, - sym_attribute_specifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(33), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(723), 6, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(392), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [26357] = 21, + STATE(505), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(573), 11, + sym__expression, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [98] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -36069,15 +33878,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(958), 1, sym_identifier, - ACTIONS(1332), 1, + ACTIONS(1202), 1, anon_sym_LBRACK, - ACTIONS(1334), 1, + ACTIONS(1204), 1, anon_sym_DOT, - ACTIONS(1354), 1, + ACTIONS(1210), 1, anon_sym_RBRACE, - ACTIONS(1356), 1, + ACTIONS(1212), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, @@ -36091,30 +33900,36 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - STATE(964), 2, + STATE(983), 2, sym_initializer_list, sym_initializer_pair, - ACTIONS(1358), 3, + ACTIONS(1214), 3, sym_true, sym_false, sym_null, - STATE(836), 3, + STATE(845), 3, sym_subscript_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, - STATE(440), 5, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(590), 11, + STATE(592), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -36126,141 +33941,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [26446] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1280), 1, - sym_identifier, - ACTIONS(1289), 1, - aux_sym_preproc_if_token2, - ACTIONS(1300), 1, - anon_sym___attribute__, - ACTIONS(1309), 1, - sym_primitive_type, - ACTIONS(1312), 1, - anon_sym_enum, - ACTIONS(1315), 1, - anon_sym_struct, - ACTIONS(1318), 1, - anon_sym_union, - ACTIONS(1360), 1, - aux_sym_preproc_def_token1, - ACTIONS(1363), 1, - aux_sym_preproc_if_token1, - ACTIONS(1369), 1, - sym_preproc_directive, - STATE(707), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(772), 1, - sym__declaration_specifiers, - ACTIONS(1366), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(1303), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(1306), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(568), 4, - sym_attribute_specifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(1297), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(723), 6, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(392), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [26533] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(25), 1, - anon_sym___attribute__, - ACTIONS(41), 1, - anon_sym_enum, - ACTIONS(43), 1, - anon_sym_struct, - ACTIONS(45), 1, - anon_sym_union, - ACTIONS(648), 1, - sym_primitive_type, - ACTIONS(1226), 1, - sym_identifier, - ACTIONS(1372), 1, - aux_sym_preproc_def_token1, - ACTIONS(1374), 1, - aux_sym_preproc_if_token1, - ACTIONS(1378), 1, - sym_preproc_directive, - ACTIONS(1380), 1, - anon_sym_RBRACE, - STATE(707), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(773), 1, - sym__declaration_specifiers, - ACTIONS(1376), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(35), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(37), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(568), 4, - sym_attribute_specifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(33), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(723), 6, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(395), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [26620] = 21, + [193] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -36271,15 +33952,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(958), 1, sym_identifier, - ACTIONS(1332), 1, + ACTIONS(1202), 1, anon_sym_LBRACK, - ACTIONS(1334), 1, + ACTIONS(1204), 1, anon_sym_DOT, - ACTIONS(1356), 1, + ACTIONS(1212), 1, sym_number_literal, - ACTIONS(1382), 1, + ACTIONS(1216), 1, anon_sym_RBRACE, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, @@ -36293,30 +33974,36 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - STATE(964), 2, + STATE(983), 2, sym_initializer_list, sym_initializer_pair, - ACTIONS(1358), 3, + ACTIONS(1214), 3, sym_true, sym_false, sym_null, - STATE(836), 3, + STATE(845), 3, sym_subscript_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, - STATE(440), 5, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(590), 11, + STATE(592), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -36328,213 +34015,43 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [26709] = 20, + [288] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1280), 1, - sym_identifier, - ACTIONS(1300), 1, - anon_sym___attribute__, - ACTIONS(1309), 1, - sym_primitive_type, - ACTIONS(1312), 1, - anon_sym_enum, - ACTIONS(1315), 1, - anon_sym_struct, - ACTIONS(1318), 1, - anon_sym_union, - ACTIONS(1384), 1, - aux_sym_preproc_def_token1, - ACTIONS(1387), 1, - aux_sym_preproc_if_token1, - ACTIONS(1393), 1, - sym_preproc_directive, - ACTIONS(1396), 1, - anon_sym_RBRACE, - STATE(707), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(773), 1, - sym__declaration_specifiers, - ACTIONS(1390), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(1303), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(1306), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(568), 4, - sym_attribute_specifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(1297), 5, + ACTIONS(1222), 1, + anon_sym_SEMI, + ACTIONS(1225), 1, + anon_sym_LPAREN2, + ACTIONS(1229), 1, + anon_sym_STAR, + ACTIONS(1232), 1, + anon_sym_EQ, + ACTIONS(1234), 1, + anon_sym_COLON, + ACTIONS(1236), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1218), 11, anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(723), 6, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(395), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [26796] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(25), 1, anon_sym___attribute__, - ACTIONS(41), 1, - anon_sym_enum, - ACTIONS(43), 1, - anon_sym_struct, - ACTIONS(45), 1, - anon_sym_union, - ACTIONS(648), 1, - sym_primitive_type, - ACTIONS(1226), 1, - sym_identifier, - ACTIONS(1344), 1, - aux_sym_preproc_def_token1, - ACTIONS(1346), 1, - aux_sym_preproc_if_token1, - ACTIONS(1352), 1, - sym_preproc_directive, - ACTIONS(1398), 1, - aux_sym_preproc_if_token2, - STATE(707), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(772), 1, - sym__declaration_specifiers, - ACTIONS(1350), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(35), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(37), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(568), 4, - sym_attribute_specifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(33), 5, - anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(723), 6, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(390), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [26883] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(25), 1, - anon_sym___attribute__, - ACTIONS(41), 1, - anon_sym_enum, - ACTIONS(43), 1, - anon_sym_struct, - ACTIONS(45), 1, - anon_sym_union, - ACTIONS(648), 1, - sym_primitive_type, - ACTIONS(1226), 1, - sym_identifier, - ACTIONS(1372), 1, - aux_sym_preproc_def_token1, - ACTIONS(1374), 1, - aux_sym_preproc_if_token1, - ACTIONS(1378), 1, - sym_preproc_directive, - ACTIONS(1400), 1, - anon_sym_RBRACE, - STATE(707), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(773), 1, - sym__declaration_specifiers, - ACTIONS(1376), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(35), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(37), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(568), 4, - sym_attribute_specifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(33), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(723), 6, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(393), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [26970] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1130), 13, - anon_sym_STAR, - anon_sym_EQ, + sym_identifier, + ACTIONS(1238), 11, anon_sym_AMP, anon_sym_DASH, anon_sym_PLUS, @@ -36546,26 +34063,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1132), 31, + ACTIONS(1220), 13, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -36576,14 +34077,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - [27022] = 3, + [360] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1166), 13, + ACTIONS(1225), 1, + anon_sym_LPAREN2, + ACTIONS(1229), 1, anon_sym_STAR, + ACTIONS(1232), 1, anon_sym_EQ, + ACTIONS(1234), 1, + anon_sym_COLON, + ACTIONS(1236), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1218), 11, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + sym_identifier, + ACTIONS(1238), 11, anon_sym_AMP, anon_sym_DASH, anon_sym_PLUS, @@ -36595,26 +34123,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1168), 31, + ACTIONS(1220), 14, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -36623,162 +34136,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - [27074] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(908), 1, - anon_sym_LBRACE, - ACTIONS(958), 1, - sym_identifier, - ACTIONS(1332), 1, - anon_sym_LBRACK, - ACTIONS(1334), 1, - anon_sym_DOT, - ACTIONS(1356), 1, - sym_number_literal, - STATE(386), 1, - sym_string_literal, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - STATE(964), 2, - sym_initializer_list, - sym_initializer_pair, - ACTIONS(1358), 3, - sym_true, - sym_false, - sym_null, - STATE(836), 3, - sym_subscript_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(590), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [27160] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(25), 1, - anon_sym___attribute__, - ACTIONS(41), 1, - anon_sym_enum, - ACTIONS(43), 1, - anon_sym_struct, - ACTIONS(45), 1, - anon_sym_union, - ACTIONS(648), 1, - sym_primitive_type, - ACTIONS(1226), 1, - sym_identifier, - ACTIONS(1270), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1272), 1, - anon_sym_RPAREN, - ACTIONS(1278), 1, - anon_sym_LBRACK, - ACTIONS(1402), 1, - anon_sym_LPAREN2, - ACTIONS(1404), 1, - anon_sym_STAR, - STATE(707), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(756), 1, - sym__declaration_specifiers, - STATE(900), 1, - sym_parameter_list, - STATE(910), 1, - sym_parameter_declaration, - ACTIONS(35), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(37), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(568), 4, - sym_attribute_specifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(33), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(868), 5, - sym__abstract_declarator, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(723), 6, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - [27249] = 19, + anon_sym_DOT, + anon_sym_DASH_GT, + [430] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, anon_sym_LPAREN2, - ACTIONS(31), 1, - anon_sym_AMP, ACTIONS(75), 1, anon_sym_sizeof, + ACTIONS(908), 1, + anon_sym_LBRACE, ACTIONS(958), 1, sym_identifier, - ACTIONS(1406), 1, - anon_sym_STAR, - ACTIONS(1408), 1, - anon_sym_RBRACK, - ACTIONS(1412), 1, + ACTIONS(1202), 1, + anon_sym_LBRACK, + ACTIONS(1204), 1, + anon_sym_DOT, + ACTIONS(1212), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, + ACTIONS(31), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(69), 2, anon_sym_BANG, anon_sym_TILDE, @@ -36788,31 +34169,36 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + STATE(983), 2, + sym_initializer_list, + sym_initializer_pair, + ACTIONS(1214), 3, + sym_true, + sym_false, + sym_null, + STATE(845), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(666), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1414), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(1410), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(642), 11, + STATE(592), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -36824,58 +34210,80 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [27332] = 18, + [522] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1222), 1, + anon_sym_SEMI, + ACTIONS(1225), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, - anon_sym_LBRACK, - ACTIONS(1424), 1, + ACTIONS(1229), 1, + anon_sym_STAR, + ACTIONS(1232), 1, anon_sym_EQ, - ACTIONS(1426), 1, + ACTIONS(1240), 1, + anon_sym_COLON, + ACTIONS(1236), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1218), 11, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + sym_identifier, + ACTIONS(1238), 11, anon_sym_AMP, - ACTIONS(1430), 1, - anon_sym_AMP_AMP, - ACTIONS(1432), 1, - anon_sym_PIPE, - ACTIONS(1434), 1, - anon_sym_CARET, - STATE(441), 1, - sym_argument_list, - ACTIONS(1428), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1436), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1438), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(1440), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1442), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1444), 2, + ACTIONS(1220), 13, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1420), 3, + [594] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1225), 1, + anon_sym_LPAREN2, + ACTIONS(1229), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1416), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(1232), 1, + anon_sym_EQ, + ACTIONS(1242), 1, anon_sym_COLON, - anon_sym_QMARK, + ACTIONS(1236), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -36886,108 +34294,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - [27413] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1418), 1, - anon_sym_LPAREN2, - ACTIONS(1422), 1, - anon_sym_LBRACK, - STATE(441), 1, - sym_argument_list, - ACTIONS(1444), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1420), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1424), 10, - anon_sym_EQ, + ACTIONS(1218), 11, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + sym_identifier, + ACTIONS(1238), 11, anon_sym_AMP, anon_sym_DASH, anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1416), 23, + ACTIONS(1220), 14, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [27476] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1418), 1, - anon_sym_LPAREN2, - ACTIONS(1422), 1, - anon_sym_LBRACK, - STATE(441), 1, - sym_argument_list, - ACTIONS(1428), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1436), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1438), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1440), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1442), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1444), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1420), 3, + [664] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1225), 1, + anon_sym_LPAREN2, + ACTIONS(1229), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1424), 4, + ACTIONS(1232), 1, anon_sym_EQ, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(1416), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(1240), 1, anon_sym_COLON, - anon_sym_QMARK, + ACTIONS(1236), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -36998,62 +34355,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [27549] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1418), 1, - anon_sym_LPAREN2, - ACTIONS(1422), 1, - anon_sym_LBRACK, - ACTIONS(1426), 1, + ACTIONS(1218), 11, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + sym_identifier, + ACTIONS(1238), 11, anon_sym_AMP, - ACTIONS(1430), 1, - anon_sym_AMP_AMP, - ACTIONS(1432), 1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(1434), 1, anon_sym_CARET, - ACTIONS(1450), 1, - anon_sym_EQ, - ACTIONS(1452), 1, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1220), 14, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_PIPE_PIPE, - STATE(441), 1, - sym_argument_list, - ACTIONS(1428), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1436), 2, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1438), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1440), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1442), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1444), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1420), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1448), 17, - anon_sym_COMMA, - anon_sym_RPAREN, + [734] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1222), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(1225), 1, + anon_sym_LPAREN2, + ACTIONS(1229), 1, + anon_sym_STAR, + ACTIONS(1232), 1, + anon_sym_EQ, + ACTIONS(1242), 1, anon_sym_COLON, - anon_sym_QMARK, + ACTIONS(1236), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -37064,248 +34418,119 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [27632] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(31), 1, - anon_sym_AMP, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(958), 1, - sym_identifier, - ACTIONS(1454), 1, - anon_sym_STAR, - ACTIONS(1456), 1, - anon_sym_RBRACK, - ACTIONS(1458), 1, - sym_number_literal, - STATE(386), 1, - sym_string_literal, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - STATE(409), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1460), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(1410), 4, + ACTIONS(1218), 11, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(657), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [27715] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(31), 1, - anon_sym_AMP, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(958), 1, sym_identifier, - ACTIONS(1462), 1, - anon_sym_STAR, - ACTIONS(1464), 1, - anon_sym_RBRACK, - ACTIONS(1466), 1, - sym_number_literal, - STATE(386), 1, - sym_string_literal, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, + ACTIONS(1238), 11, + anon_sym_AMP, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(73), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1220), 13, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - STATE(402), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1468), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(1410), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(638), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [27798] = 19, + anon_sym_DOT, + anon_sym_DASH_GT, + [806] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(27), 1, + ACTIONS(1225), 1, anon_sym_LPAREN2, - ACTIONS(31), 1, - anon_sym_AMP, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(958), 1, - sym_identifier, - ACTIONS(1470), 1, + ACTIONS(1229), 1, anon_sym_STAR, - ACTIONS(1472), 1, - anon_sym_RBRACK, - ACTIONS(1474), 1, - sym_number_literal, - STATE(386), 1, - sym_string_literal, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - STATE(666), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1476), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(1410), 4, + ACTIONS(1232), 1, + anon_sym_EQ, + ACTIONS(1244), 1, + anon_sym_COLON, + ACTIONS(1236), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1218), 11, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(639), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [27881] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1418), 1, - anon_sym_LPAREN2, - ACTIONS(1422), 1, - anon_sym_LBRACK, - ACTIONS(1424), 1, - anon_sym_EQ, - ACTIONS(1426), 1, + sym_identifier, + ACTIONS(1238), 11, anon_sym_AMP, - ACTIONS(1432), 1, - anon_sym_PIPE, - ACTIONS(1434), 1, - anon_sym_CARET, - STATE(441), 1, - sym_argument_list, - ACTIONS(1428), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1436), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1438), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(1440), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1442), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1444), 2, + ACTIONS(1220), 14, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1420), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1416), 19, - anon_sym_COMMA, - anon_sym_RPAREN, + [876] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1222), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(1225), 1, + anon_sym_LPAREN2, + ACTIONS(1229), 1, + anon_sym_STAR, + ACTIONS(1232), 1, + anon_sym_EQ, + ACTIONS(1244), 1, anon_sym_COLON, - anon_sym_QMARK, + ACTIONS(1236), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -37316,9 +34541,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + ACTIONS(1218), 11, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + sym_identifier, + ACTIONS(1238), 11, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1220), 13, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [27960] = 19, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [948] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -37329,13 +34590,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1478), 1, + ACTIONS(1246), 1, anon_sym_STAR, - ACTIONS(1480), 1, + ACTIONS(1248), 1, anon_sym_RBRACK, - ACTIONS(1482), 1, + ACTIONS(1252), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(69), 2, anon_sym_BANG, @@ -37346,31 +34607,37 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - STATE(666), 2, + STATE(398), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1484), 3, + ACTIONS(1254), 3, sym_true, sym_false, sym_null, - ACTIONS(1410), 4, + ACTIONS(1250), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(440), 5, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 11, + STATE(642), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -37382,245 +34649,229 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [28043] = 19, + [1037] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(31), 1, - anon_sym_AMP, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(958), 1, + ACTIONS(25), 1, + anon_sym___attribute__, + ACTIONS(41), 1, + anon_sym_enum, + ACTIONS(43), 1, + anon_sym_struct, + ACTIONS(45), 1, + anon_sym_union, + ACTIONS(648), 1, + sym_primitive_type, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(1486), 1, - anon_sym_STAR, - ACTIONS(1488), 1, - anon_sym_RBRACK, - ACTIONS(1490), 1, - sym_number_literal, - STATE(386), 1, - sym_string_literal, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - STATE(418), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1492), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(1410), 4, + ACTIONS(1258), 1, + aux_sym_preproc_def_token1, + ACTIONS(1260), 1, + aux_sym_preproc_if_token1, + ACTIONS(1262), 1, + aux_sym_preproc_if_token2, + ACTIONS(1266), 1, + aux_sym_preproc_else_token1, + ACTIONS(1268), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1270), 1, + sym_preproc_directive, + STATE(712), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(771), 1, + sym__declaration_specifiers, + ACTIONS(1264), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1047), 2, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(35), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(634), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [28126] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1418), 1, - anon_sym_LPAREN2, - ACTIONS(1422), 1, - anon_sym_LBRACK, - STATE(441), 1, - sym_argument_list, - ACTIONS(1444), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1496), 13, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1494), 23, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [28187] = 16, + ACTIONS(37), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(570), 4, + sym_attribute_specifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(33), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(723), 6, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(399), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [1134] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, - anon_sym_LPAREN2, - ACTIONS(1422), 1, - anon_sym_LBRACK, - ACTIONS(1426), 1, - anon_sym_AMP, - ACTIONS(1434), 1, - anon_sym_CARET, - STATE(441), 1, - sym_argument_list, - ACTIONS(1424), 2, - anon_sym_EQ, - anon_sym_PIPE, - ACTIONS(1428), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1436), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1438), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1440), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1442), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1444), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1420), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1416), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [28264] = 15, + ACTIONS(25), 1, + anon_sym___attribute__, + ACTIONS(41), 1, + anon_sym_enum, + ACTIONS(43), 1, + anon_sym_struct, + ACTIONS(45), 1, + anon_sym_union, + ACTIONS(648), 1, + sym_primitive_type, + ACTIONS(1256), 1, + sym_identifier, + ACTIONS(1258), 1, + aux_sym_preproc_def_token1, + ACTIONS(1260), 1, + aux_sym_preproc_if_token1, + ACTIONS(1266), 1, + aux_sym_preproc_else_token1, + ACTIONS(1268), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1270), 1, + sym_preproc_directive, + ACTIONS(1272), 1, + aux_sym_preproc_if_token2, + STATE(712), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(771), 1, + sym__declaration_specifiers, + ACTIONS(1264), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1106), 2, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(35), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(37), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(570), 4, + sym_attribute_specifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(33), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(723), 6, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(404), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [1231] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, - anon_sym_LPAREN2, - ACTIONS(1422), 1, - anon_sym_LBRACK, - ACTIONS(1426), 1, - anon_sym_AMP, - STATE(441), 1, - sym_argument_list, - ACTIONS(1428), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1436), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1438), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1440), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1442), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1444), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1420), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1424), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(1416), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [28339] = 19, + ACTIONS(25), 1, + anon_sym___attribute__, + ACTIONS(41), 1, + anon_sym_enum, + ACTIONS(43), 1, + anon_sym_struct, + ACTIONS(45), 1, + anon_sym_union, + ACTIONS(648), 1, + sym_primitive_type, + ACTIONS(1256), 1, + sym_identifier, + ACTIONS(1258), 1, + aux_sym_preproc_def_token1, + ACTIONS(1260), 1, + aux_sym_preproc_if_token1, + ACTIONS(1266), 1, + aux_sym_preproc_else_token1, + ACTIONS(1268), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1270), 1, + sym_preproc_directive, + ACTIONS(1274), 1, + aux_sym_preproc_if_token2, + STATE(712), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(771), 1, + sym__declaration_specifiers, + ACTIONS(1264), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1107), 2, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(35), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(37), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(570), 4, + sym_attribute_specifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(33), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(723), 6, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(404), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [1328] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -37631,13 +34882,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1498), 1, + ACTIONS(1276), 1, anon_sym_STAR, - ACTIONS(1500), 1, + ACTIONS(1278), 1, anon_sym_RBRACK, - ACTIONS(1502), 1, + ACTIONS(1280), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(69), 2, anon_sym_BANG, @@ -37648,31 +34899,37 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - STATE(411), 2, + STATE(400), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1504), 3, + ACTIONS(1282), 3, sym_true, sym_false, sym_null, - ACTIONS(1410), 4, + ACTIONS(1250), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(440), 5, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(643), 11, + STATE(660), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -37684,22 +34941,167 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [28422] = 8, + [1417] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym___attribute__, + ACTIONS(41), 1, + anon_sym_enum, + ACTIONS(43), 1, + anon_sym_struct, + ACTIONS(45), 1, + anon_sym_union, + ACTIONS(648), 1, + sym_primitive_type, + ACTIONS(1256), 1, + sym_identifier, + ACTIONS(1258), 1, + aux_sym_preproc_def_token1, + ACTIONS(1260), 1, + aux_sym_preproc_if_token1, + ACTIONS(1266), 1, + aux_sym_preproc_else_token1, + ACTIONS(1268), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1270), 1, + sym_preproc_directive, + ACTIONS(1284), 1, + aux_sym_preproc_if_token2, + STATE(712), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(771), 1, + sym__declaration_specifiers, + ACTIONS(1264), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1150), 2, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(35), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(37), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(570), 4, + sym_attribute_specifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(33), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(723), 6, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(404), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [1514] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym___attribute__, + ACTIONS(41), 1, + anon_sym_enum, + ACTIONS(43), 1, + anon_sym_struct, + ACTIONS(45), 1, + anon_sym_union, + ACTIONS(648), 1, + sym_primitive_type, + ACTIONS(1256), 1, + sym_identifier, + ACTIONS(1258), 1, + aux_sym_preproc_def_token1, + ACTIONS(1260), 1, + aux_sym_preproc_if_token1, + ACTIONS(1266), 1, + aux_sym_preproc_else_token1, + ACTIONS(1268), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1270), 1, + sym_preproc_directive, + ACTIONS(1286), 1, + aux_sym_preproc_if_token2, + STATE(712), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(771), 1, + sym__declaration_specifiers, + ACTIONS(1264), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1044), 2, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(35), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(37), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(570), 4, + sym_attribute_specifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(33), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(723), 6, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(391), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [1611] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, - anon_sym_LPAREN2, - ACTIONS(1422), 1, - anon_sym_LBRACK, - STATE(441), 1, - sym_argument_list, - ACTIONS(1444), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1424), 13, + STATE(396), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1238), 13, anon_sym_STAR, anon_sym_EQ, anon_sym_AMP, @@ -37713,11 +35115,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1416), 23, + ACTIONS(1220), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_LPAREN2, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -37737,7 +35141,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [28483] = 19, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [1672] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -37748,13 +35156,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1506), 1, + ACTIONS(1288), 1, anon_sym_STAR, - ACTIONS(1508), 1, + ACTIONS(1290), 1, anon_sym_RBRACK, - ACTIONS(1510), 1, + ACTIONS(1292), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(69), 2, anon_sym_BANG, @@ -37765,31 +35173,37 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - STATE(666), 2, + STATE(394), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1512), 3, + ACTIONS(1294), 3, sym_true, sym_false, sym_null, - ACTIONS(1410), 4, + ACTIONS(1250), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(440), 5, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(650), 11, + STATE(633), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -37801,169 +35215,81 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [28566] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1418), 1, - anon_sym_LPAREN2, - ACTIONS(1422), 1, - anon_sym_LBRACK, - STATE(441), 1, - sym_argument_list, - ACTIONS(1428), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1438), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1440), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1442), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1444), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1420), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1424), 4, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(1416), 21, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [28637] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1516), 13, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1514), 30, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [28688] = 11, + [1761] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, - anon_sym_LPAREN2, - ACTIONS(1422), 1, - anon_sym_LBRACK, - STATE(441), 1, - sym_argument_list, - ACTIONS(1428), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1442), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1444), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1420), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1424), 6, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1416), 23, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [28755] = 19, + ACTIONS(25), 1, + anon_sym___attribute__, + ACTIONS(41), 1, + anon_sym_enum, + ACTIONS(43), 1, + anon_sym_struct, + ACTIONS(45), 1, + anon_sym_union, + ACTIONS(648), 1, + sym_primitive_type, + ACTIONS(1256), 1, + sym_identifier, + ACTIONS(1258), 1, + aux_sym_preproc_def_token1, + ACTIONS(1260), 1, + aux_sym_preproc_if_token1, + ACTIONS(1266), 1, + aux_sym_preproc_else_token1, + ACTIONS(1268), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1270), 1, + sym_preproc_directive, + ACTIONS(1296), 1, + aux_sym_preproc_if_token2, + STATE(712), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(771), 1, + sym__declaration_specifiers, + ACTIONS(1264), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1017), 2, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(35), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(37), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(570), 4, + sym_attribute_specifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(33), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(723), 6, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(375), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [1858] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -37974,13 +35300,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1518), 1, + ACTIONS(1298), 1, anon_sym_STAR, - ACTIONS(1520), 1, + ACTIONS(1300), 1, anon_sym_RBRACK, - ACTIONS(1522), 1, + ACTIONS(1302), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(69), 2, anon_sym_BANG, @@ -37991,31 +35317,37 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - STATE(429), 2, + STATE(555), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1524), 3, + ACTIONS(1304), 3, sym_true, sym_false, sym_null, - ACTIONS(1410), 4, + ACTIONS(1250), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(440), 5, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(641), 11, + STATE(656), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -38027,142 +35359,241 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [28838] = 10, + [1947] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, - anon_sym_LPAREN2, - ACTIONS(1422), 1, - anon_sym_LBRACK, - STATE(441), 1, - sym_argument_list, - ACTIONS(1428), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1444), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1420), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1424), 8, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1416), 23, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [28903] = 20, + ACTIONS(25), 1, + anon_sym___attribute__, + ACTIONS(41), 1, + anon_sym_enum, + ACTIONS(43), 1, + anon_sym_struct, + ACTIONS(45), 1, + anon_sym_union, + ACTIONS(648), 1, + sym_primitive_type, + ACTIONS(1256), 1, + sym_identifier, + ACTIONS(1258), 1, + aux_sym_preproc_def_token1, + ACTIONS(1260), 1, + aux_sym_preproc_if_token1, + ACTIONS(1266), 1, + aux_sym_preproc_else_token1, + ACTIONS(1268), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1270), 1, + sym_preproc_directive, + ACTIONS(1306), 1, + aux_sym_preproc_if_token2, + STATE(712), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(771), 1, + sym__declaration_specifiers, + ACTIONS(1264), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1091), 2, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(35), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(37), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(570), 4, + sym_attribute_specifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(33), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(723), 6, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(389), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [2044] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, - anon_sym_LPAREN2, - ACTIONS(1422), 1, - anon_sym_LBRACK, - ACTIONS(1426), 1, - anon_sym_AMP, - ACTIONS(1430), 1, - anon_sym_AMP_AMP, - ACTIONS(1432), 1, - anon_sym_PIPE, - ACTIONS(1434), 1, - anon_sym_CARET, - ACTIONS(1452), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1528), 1, - anon_sym_EQ, - ACTIONS(1530), 1, - anon_sym_QMARK, - STATE(441), 1, - sym_argument_list, - ACTIONS(1428), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1436), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1438), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1440), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1442), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1444), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1420), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1526), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [28988] = 8, + ACTIONS(25), 1, + anon_sym___attribute__, + ACTIONS(41), 1, + anon_sym_enum, + ACTIONS(43), 1, + anon_sym_struct, + ACTIONS(45), 1, + anon_sym_union, + ACTIONS(648), 1, + sym_primitive_type, + ACTIONS(1256), 1, + sym_identifier, + ACTIONS(1258), 1, + aux_sym_preproc_def_token1, + ACTIONS(1260), 1, + aux_sym_preproc_if_token1, + ACTIONS(1266), 1, + aux_sym_preproc_else_token1, + ACTIONS(1268), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1270), 1, + sym_preproc_directive, + ACTIONS(1308), 1, + aux_sym_preproc_if_token2, + STATE(712), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(771), 1, + sym__declaration_specifiers, + ACTIONS(1264), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1143), 2, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(35), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(37), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(570), 4, + sym_attribute_specifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(33), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(723), 6, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(378), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [2141] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym___attribute__, + ACTIONS(41), 1, + anon_sym_enum, + ACTIONS(43), 1, + anon_sym_struct, + ACTIONS(45), 1, + anon_sym_union, + ACTIONS(648), 1, + sym_primitive_type, + ACTIONS(1256), 1, + sym_identifier, + ACTIONS(1258), 1, + aux_sym_preproc_def_token1, + ACTIONS(1260), 1, + aux_sym_preproc_if_token1, + ACTIONS(1266), 1, + aux_sym_preproc_else_token1, + ACTIONS(1268), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1270), 1, + sym_preproc_directive, + ACTIONS(1310), 1, + aux_sym_preproc_if_token2, + STATE(712), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(771), 1, + sym__declaration_specifiers, + ACTIONS(1264), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1088), 2, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(35), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(37), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(570), 4, + sym_attribute_specifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(33), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(723), 6, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(390), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [2238] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, - anon_sym_LPAREN2, - ACTIONS(1422), 1, - anon_sym_LBRACK, - STATE(441), 1, - sym_argument_list, - ACTIONS(1444), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1534), 13, + STATE(387), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(1316), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1314), 13, anon_sym_STAR, anon_sym_EQ, anon_sym_AMP, @@ -38176,61 +35607,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1532), 23, + ACTIONS(1312), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29049] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1418), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, - anon_sym_LBRACK, - STATE(441), 1, - sym_argument_list, - ACTIONS(1446), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1538), 13, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1536), 25, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -38252,116 +35635,375 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [29108] = 11, + anon_sym_DOT, + anon_sym_DASH_GT, + [2299] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(27), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, - anon_sym_LBRACK, - STATE(441), 1, - sym_argument_list, - ACTIONS(1428), 2, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(75), 1, + anon_sym_sizeof, + ACTIONS(958), 1, + sym_identifier, + ACTIONS(1319), 1, + anon_sym_STAR, + ACTIONS(1321), 1, + anon_sym_RBRACK, + ACTIONS(1323), 1, + sym_number_literal, + STATE(380), 1, + sym_string_literal, + ACTIONS(69), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1442), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1444), 2, + ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1420), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1542), 6, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1540), 23, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29175] = 8, + STATE(383), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1325), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(1250), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(505), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(638), 11, + sym__expression, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [2388] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, - anon_sym_LPAREN2, - ACTIONS(1422), 1, - anon_sym_LBRACK, - STATE(441), 1, - sym_argument_list, - ACTIONS(1444), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1546), 13, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1544), 23, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29236] = 19, + ACTIONS(25), 1, + anon_sym___attribute__, + ACTIONS(41), 1, + anon_sym_enum, + ACTIONS(43), 1, + anon_sym_struct, + ACTIONS(45), 1, + anon_sym_union, + ACTIONS(648), 1, + sym_primitive_type, + ACTIONS(1256), 1, + sym_identifier, + ACTIONS(1258), 1, + aux_sym_preproc_def_token1, + ACTIONS(1260), 1, + aux_sym_preproc_if_token1, + ACTIONS(1266), 1, + aux_sym_preproc_else_token1, + ACTIONS(1268), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1270), 1, + sym_preproc_directive, + ACTIONS(1327), 1, + aux_sym_preproc_if_token2, + STATE(712), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(771), 1, + sym__declaration_specifiers, + ACTIONS(1264), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1054), 2, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(35), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(37), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(570), 4, + sym_attribute_specifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(33), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(723), 6, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(404), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [2485] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym___attribute__, + ACTIONS(41), 1, + anon_sym_enum, + ACTIONS(43), 1, + anon_sym_struct, + ACTIONS(45), 1, + anon_sym_union, + ACTIONS(648), 1, + sym_primitive_type, + ACTIONS(1256), 1, + sym_identifier, + ACTIONS(1258), 1, + aux_sym_preproc_def_token1, + ACTIONS(1260), 1, + aux_sym_preproc_if_token1, + ACTIONS(1266), 1, + aux_sym_preproc_else_token1, + ACTIONS(1268), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1270), 1, + sym_preproc_directive, + ACTIONS(1329), 1, + aux_sym_preproc_if_token2, + STATE(712), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(771), 1, + sym__declaration_specifiers, + ACTIONS(1264), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1076), 2, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(35), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(37), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(570), 4, + sym_attribute_specifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(33), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(723), 6, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(404), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [2582] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym___attribute__, + ACTIONS(41), 1, + anon_sym_enum, + ACTIONS(43), 1, + anon_sym_struct, + ACTIONS(45), 1, + anon_sym_union, + ACTIONS(648), 1, + sym_primitive_type, + ACTIONS(1256), 1, + sym_identifier, + ACTIONS(1258), 1, + aux_sym_preproc_def_token1, + ACTIONS(1260), 1, + aux_sym_preproc_if_token1, + ACTIONS(1266), 1, + aux_sym_preproc_else_token1, + ACTIONS(1268), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1270), 1, + sym_preproc_directive, + ACTIONS(1331), 1, + aux_sym_preproc_if_token2, + STATE(712), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(771), 1, + sym__declaration_specifiers, + ACTIONS(1264), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1023), 2, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(35), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(37), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(570), 4, + sym_attribute_specifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(33), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(723), 6, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(404), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [2679] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym___attribute__, + ACTIONS(41), 1, + anon_sym_enum, + ACTIONS(43), 1, + anon_sym_struct, + ACTIONS(45), 1, + anon_sym_union, + ACTIONS(648), 1, + sym_primitive_type, + ACTIONS(1256), 1, + sym_identifier, + ACTIONS(1258), 1, + aux_sym_preproc_def_token1, + ACTIONS(1260), 1, + aux_sym_preproc_if_token1, + ACTIONS(1266), 1, + aux_sym_preproc_else_token1, + ACTIONS(1268), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1270), 1, + sym_preproc_directive, + ACTIONS(1333), 1, + aux_sym_preproc_if_token2, + STATE(712), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(771), 1, + sym__declaration_specifiers, + ACTIONS(1264), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1018), 2, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(35), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(37), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(570), 4, + sym_attribute_specifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(33), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(723), 6, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(376), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [2776] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -38372,13 +36014,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1548), 1, + ACTIONS(1335), 1, anon_sym_STAR, - ACTIONS(1550), 1, + ACTIONS(1337), 1, anon_sym_RBRACK, - ACTIONS(1552), 1, + ACTIONS(1339), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(69), 2, anon_sym_BANG, @@ -38389,31 +36031,37 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - STATE(666), 2, + STATE(555), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1554), 3, + ACTIONS(1341), 3, sym_true, sym_false, sym_null, - ACTIONS(1410), 4, + ACTIONS(1250), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(440), 5, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(637), 11, + STATE(648), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -38425,80 +36073,86 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [29319] = 3, + [2865] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1558), 13, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(27), 1, + anon_sym_LPAREN2, + ACTIONS(31), 1, anon_sym_AMP, + ACTIONS(75), 1, + anon_sym_sizeof, + ACTIONS(958), 1, + sym_identifier, + ACTIONS(1343), 1, + anon_sym_STAR, + ACTIONS(1345), 1, + anon_sym_RBRACK, + ACTIONS(1347), 1, + sym_number_literal, + STATE(380), 1, + sym_string_literal, + ACTIONS(69), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1556), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [29369] = 3, + STATE(555), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1349), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(1250), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(505), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(646), 11, + sym__expression, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [2954] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 13, + ACTIONS(1225), 1, + anon_sym_LPAREN2, + ACTIONS(1229), 1, anon_sym_STAR, + ACTIONS(1232), 1, anon_sym_EQ, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1560), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, + ACTIONS(1236), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -38509,22 +36163,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [29419] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1566), 13, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(1218), 11, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + sym_identifier, + ACTIONS(1238), 11, anon_sym_AMP, anon_sym_DASH, anon_sym_PLUS, @@ -38536,26 +36187,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1564), 29, + ACTIONS(1220), 14, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -38566,10 +36202,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [29469] = 3, + [3021] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1570), 13, + STATE(387), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1353), 13, anon_sym_STAR, anon_sym_EQ, anon_sym_AMP, @@ -38583,7 +36228,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1568), 29, + ACTIONS(1351), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -38613,347 +36258,367 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [29519] = 3, + [3082] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1574), 13, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(27), 1, + anon_sym_LPAREN2, + ACTIONS(31), 1, anon_sym_AMP, + ACTIONS(75), 1, + anon_sym_sizeof, + ACTIONS(958), 1, + sym_identifier, + ACTIONS(1355), 1, + anon_sym_STAR, + ACTIONS(1357), 1, + anon_sym_RBRACK, + ACTIONS(1359), 1, + sym_number_literal, + STATE(380), 1, + sym_string_literal, + ACTIONS(69), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1572), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [29569] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1205), 1, - anon_sym_LPAREN2, - ACTIONS(1209), 1, - anon_sym_STAR, - ACTIONS(1212), 1, - anon_sym_EQ, - ACTIONS(1202), 2, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(1576), 4, + STATE(393), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1361), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(1250), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(1216), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1218), 11, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1200), 12, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [29631] = 3, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(505), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(636), 11, + sym__expression, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [3171] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1580), 13, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1578), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(27), 1, anon_sym_LPAREN2, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [29681] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1584), 13, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(31), 1, anon_sym_AMP, + ACTIONS(75), 1, + anon_sym_sizeof, + ACTIONS(958), 1, + sym_identifier, + ACTIONS(1363), 1, + anon_sym_STAR, + ACTIONS(1365), 1, + anon_sym_RBRACK, + ACTIONS(1367), 1, + sym_number_literal, + STATE(380), 1, + sym_string_literal, + ACTIONS(69), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1582), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [29731] = 3, + STATE(555), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1369), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(1250), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(505), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(637), 11, + sym__expression, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [3260] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1588), 13, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1586), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [29781] = 3, + ACTIONS(25), 1, + anon_sym___attribute__, + ACTIONS(41), 1, + anon_sym_enum, + ACTIONS(43), 1, + anon_sym_struct, + ACTIONS(45), 1, + anon_sym_union, + ACTIONS(648), 1, + sym_primitive_type, + ACTIONS(1256), 1, + sym_identifier, + ACTIONS(1258), 1, + aux_sym_preproc_def_token1, + ACTIONS(1260), 1, + aux_sym_preproc_if_token1, + ACTIONS(1266), 1, + aux_sym_preproc_else_token1, + ACTIONS(1268), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1270), 1, + sym_preproc_directive, + ACTIONS(1371), 1, + aux_sym_preproc_if_token2, + STATE(712), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(771), 1, + sym__declaration_specifiers, + ACTIONS(1264), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1028), 2, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(35), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(37), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(570), 4, + sym_attribute_specifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(33), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(723), 6, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(404), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [3357] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1592), 13, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(27), 1, + anon_sym_LPAREN2, + ACTIONS(31), 1, anon_sym_AMP, + ACTIONS(75), 1, + anon_sym_sizeof, + ACTIONS(958), 1, + sym_identifier, + ACTIONS(1373), 1, + anon_sym_STAR, + ACTIONS(1375), 1, + anon_sym_RBRACK, + ACTIONS(1377), 1, + sym_number_literal, + STATE(380), 1, + sym_string_literal, + ACTIONS(69), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1590), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [29831] = 5, + STATE(555), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1379), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(1250), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(505), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(640), 11, + sym__expression, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [3446] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1212), 1, - anon_sym_EQ, - ACTIONS(1216), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1218), 12, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1200), 19, - anon_sym_COMMA, + ACTIONS(25), 1, + anon_sym___attribute__, + ACTIONS(41), 1, + anon_sym_enum, + ACTIONS(43), 1, + anon_sym_struct, + ACTIONS(45), 1, + anon_sym_union, + ACTIONS(648), 1, + sym_primitive_type, + ACTIONS(1381), 1, + sym_identifier, + ACTIONS(1383), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1385), 1, anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(1387), 1, anon_sym_LPAREN2, - anon_sym_RBRACE, + ACTIONS(1389), 1, + anon_sym_STAR, + ACTIONS(1391), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [29885] = 3, + STATE(712), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(756), 1, + sym__declaration_specifiers, + STATE(892), 1, + sym_parameter_list, + STATE(931), 1, + sym_parameter_declaration, + ACTIONS(35), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(37), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(570), 4, + sym_attribute_specifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(33), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(874), 5, + sym__declarator, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + STATE(880), 5, + sym__abstract_declarator, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(723), 6, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + [3542] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1596), 13, + ACTIONS(1154), 13, anon_sym_STAR, anon_sym_EQ, anon_sym_AMP, @@ -38967,7 +36632,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1594), 29, + ACTIONS(1156), 34, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -38997,10 +36662,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [29935] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [3597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1600), 13, + ACTIONS(1098), 13, anon_sym_STAR, anon_sym_EQ, anon_sym_AMP, @@ -39014,7 +36684,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1598), 29, + ACTIONS(1100), 34, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -39044,305 +36714,814 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [29985] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [3652] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1393), 1, + sym_identifier, + ACTIONS(1396), 1, + aux_sym_preproc_def_token1, + ACTIONS(1399), 1, + aux_sym_preproc_if_token1, + ACTIONS(1407), 1, + sym_preproc_directive, + ACTIONS(1413), 1, + anon_sym___attribute__, + ACTIONS(1422), 1, + sym_primitive_type, + ACTIONS(1425), 1, + anon_sym_enum, + ACTIONS(1428), 1, + anon_sym_struct, + ACTIONS(1431), 1, + anon_sym_union, + STATE(712), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(771), 1, + sym__declaration_specifiers, + ACTIONS(1404), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(1402), 3, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + ACTIONS(1416), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(1419), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(570), 4, + sym_attribute_specifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(1410), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(723), 6, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(404), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [3741] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym___attribute__, + ACTIONS(41), 1, + anon_sym_enum, + ACTIONS(43), 1, + anon_sym_struct, + ACTIONS(45), 1, + anon_sym_union, + ACTIONS(648), 1, + sym_primitive_type, + ACTIONS(1256), 1, + sym_identifier, + ACTIONS(1434), 1, + aux_sym_preproc_def_token1, + ACTIONS(1436), 1, + aux_sym_preproc_if_token1, + ACTIONS(1438), 1, + aux_sym_preproc_if_token2, + ACTIONS(1442), 1, + sym_preproc_directive, + STATE(712), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(773), 1, + sym__declaration_specifiers, + ACTIONS(1440), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(35), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(37), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(570), 4, + sym_attribute_specifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(33), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(723), 6, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(408), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [3828] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym___attribute__, + ACTIONS(41), 1, + anon_sym_enum, + ACTIONS(43), 1, + anon_sym_struct, + ACTIONS(45), 1, + anon_sym_union, + ACTIONS(648), 1, + sym_primitive_type, + ACTIONS(1256), 1, + sym_identifier, + ACTIONS(1444), 1, + aux_sym_preproc_def_token1, + ACTIONS(1446), 1, + aux_sym_preproc_if_token1, + ACTIONS(1450), 1, + sym_preproc_directive, + ACTIONS(1452), 1, + anon_sym_RBRACE, + STATE(712), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(772), 1, + sym__declaration_specifiers, + ACTIONS(1448), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(35), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(37), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(570), 4, + sym_attribute_specifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(33), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(723), 6, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(410), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [3915] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym___attribute__, + ACTIONS(41), 1, + anon_sym_enum, + ACTIONS(43), 1, + anon_sym_struct, + ACTIONS(45), 1, + anon_sym_union, + ACTIONS(648), 1, + sym_primitive_type, + ACTIONS(1256), 1, + sym_identifier, + ACTIONS(1444), 1, + aux_sym_preproc_def_token1, + ACTIONS(1446), 1, + aux_sym_preproc_if_token1, + ACTIONS(1450), 1, + sym_preproc_directive, + ACTIONS(1454), 1, + anon_sym_RBRACE, + STATE(712), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(772), 1, + sym__declaration_specifiers, + ACTIONS(1448), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(35), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(37), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(570), 4, + sym_attribute_specifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(33), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(723), 6, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(406), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [4002] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym___attribute__, + ACTIONS(41), 1, + anon_sym_enum, + ACTIONS(43), 1, + anon_sym_struct, + ACTIONS(45), 1, + anon_sym_union, + ACTIONS(648), 1, + sym_primitive_type, + ACTIONS(1256), 1, + sym_identifier, + ACTIONS(1434), 1, + aux_sym_preproc_def_token1, + ACTIONS(1436), 1, + aux_sym_preproc_if_token1, + ACTIONS(1442), 1, + sym_preproc_directive, + ACTIONS(1456), 1, + aux_sym_preproc_if_token2, + STATE(712), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(773), 1, + sym__declaration_specifiers, + ACTIONS(1440), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(35), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(37), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(570), 4, + sym_attribute_specifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(33), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(723), 6, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(409), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [4089] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1393), 1, + sym_identifier, + ACTIONS(1402), 1, + aux_sym_preproc_if_token2, + ACTIONS(1413), 1, + anon_sym___attribute__, + ACTIONS(1422), 1, + sym_primitive_type, + ACTIONS(1425), 1, + anon_sym_enum, + ACTIONS(1428), 1, + anon_sym_struct, + ACTIONS(1431), 1, + anon_sym_union, + ACTIONS(1458), 1, + aux_sym_preproc_def_token1, + ACTIONS(1461), 1, + aux_sym_preproc_if_token1, + ACTIONS(1467), 1, + sym_preproc_directive, + STATE(712), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(773), 1, + sym__declaration_specifiers, + ACTIONS(1464), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(1416), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(1419), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(570), 4, + sym_attribute_specifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(1410), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(723), 6, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(409), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [4176] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1604), 13, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1602), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LPAREN2, + ACTIONS(1393), 1, + sym_identifier, + ACTIONS(1413), 1, + anon_sym___attribute__, + ACTIONS(1422), 1, + sym_primitive_type, + ACTIONS(1425), 1, + anon_sym_enum, + ACTIONS(1428), 1, + anon_sym_struct, + ACTIONS(1431), 1, + anon_sym_union, + ACTIONS(1470), 1, + aux_sym_preproc_def_token1, + ACTIONS(1473), 1, + aux_sym_preproc_if_token1, + ACTIONS(1479), 1, + sym_preproc_directive, + ACTIONS(1482), 1, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [30035] = 3, + STATE(712), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(772), 1, + sym__declaration_specifiers, + ACTIONS(1476), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(1416), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(1419), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(570), 4, + sym_attribute_specifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(1410), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(723), 6, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(410), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [4263] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1608), 13, + ACTIONS(27), 1, + anon_sym_LPAREN2, + ACTIONS(75), 1, + anon_sym_sizeof, + ACTIONS(958), 1, + sym_identifier, + ACTIONS(1484), 1, + anon_sym_RPAREN, + ACTIONS(1486), 1, + sym_number_literal, + STATE(380), 1, + sym_string_literal, + STATE(1126), 1, + sym_comma_expression, + ACTIONS(31), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_AMP, + ACTIONS(69), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1606), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [30085] = 6, + ACTIONS(1488), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(505), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(600), 11, + sym__expression, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [4343] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1212), 1, - anon_sym_EQ, - ACTIONS(1222), 1, - anon_sym_COLON, - ACTIONS(1216), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1218), 12, + ACTIONS(27), 1, + anon_sym_LPAREN2, + ACTIONS(75), 1, + anon_sym_sizeof, + ACTIONS(958), 1, + sym_identifier, + ACTIONS(1490), 1, + anon_sym_RPAREN, + ACTIONS(1492), 1, + sym_number_literal, + STATE(380), 1, + sym_string_literal, + STATE(1074), 1, + sym_comma_expression, + ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(69), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1200), 15, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [30138] = 6, + ACTIONS(1494), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(505), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(606), 11, + sym__expression, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [4423] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1212), 1, - anon_sym_EQ, - ACTIONS(1214), 1, - anon_sym_COLON, - ACTIONS(1216), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1218), 12, + ACTIONS(27), 1, + anon_sym_LPAREN2, + ACTIONS(75), 1, + anon_sym_sizeof, + ACTIONS(958), 1, + sym_identifier, + ACTIONS(1496), 1, + anon_sym_SEMI, + ACTIONS(1498), 1, + sym_number_literal, + STATE(380), 1, + sym_string_literal, + STATE(1009), 1, + sym_comma_expression, + ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(69), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1200), 15, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [30191] = 6, + ACTIONS(1500), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(505), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(607), 11, + sym__expression, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [4503] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1212), 1, - anon_sym_EQ, - ACTIONS(1224), 1, - anon_sym_COLON, - ACTIONS(1216), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1218), 12, + ACTIONS(27), 1, + anon_sym_LPAREN2, + ACTIONS(75), 1, + anon_sym_sizeof, + ACTIONS(958), 1, + sym_identifier, + ACTIONS(1502), 1, + anon_sym_RPAREN, + ACTIONS(1504), 1, + sym_number_literal, + STATE(380), 1, + sym_string_literal, + STATE(1138), 1, + sym_comma_expression, + ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(69), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1200), 15, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [30244] = 6, + ACTIONS(1506), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(505), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(584), 11, + sym__expression, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [4583] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1212), 1, - anon_sym_EQ, - ACTIONS(1220), 1, - anon_sym_COLON, - ACTIONS(1216), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1218), 12, + ACTIONS(27), 1, + anon_sym_LPAREN2, + ACTIONS(75), 1, + anon_sym_sizeof, + ACTIONS(958), 1, + sym_identifier, + ACTIONS(1508), 1, + anon_sym_SEMI, + ACTIONS(1510), 1, + sym_number_literal, + STATE(380), 1, + sym_string_literal, + STATE(1152), 1, + sym_comma_expression, + ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(69), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1200), 15, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [30297] = 17, + ACTIONS(1512), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(505), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(597), 11, + sym__expression, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [4663] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, anon_sym_LPAREN2, ACTIONS(75), 1, anon_sym_sizeof, + ACTIONS(908), 1, + anon_sym_LBRACE, + ACTIONS(922), 1, + sym_number_literal, ACTIONS(958), 1, sym_identifier, - ACTIONS(1610), 1, - anon_sym_RPAREN, - ACTIONS(1612), 1, - sym_number_literal, - STATE(386), 1, - sym_string_literal, - STATE(996), 1, - sym_comma_expression, + STATE(380), 1, + sym_string_literal, + STATE(502), 1, + sym_initializer_list, ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, @@ -39355,23 +37534,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(902), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1614), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(581), 11, + STATE(479), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -39383,7 +37568,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [30371] = 17, + [4743] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -39392,13 +37577,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1616), 1, + ACTIONS(1514), 1, anon_sym_RPAREN, - ACTIONS(1618), 1, + ACTIONS(1516), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, - STATE(1080), 1, + STATE(1068), 1, sym_comma_expression, ACTIONS(31), 2, anon_sym_STAR, @@ -39412,23 +37597,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1518), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1620), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(573), 11, + STATE(590), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -39440,7 +37631,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [30445] = 17, + [4823] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -39449,13 +37640,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1622), 1, + ACTIONS(1520), 1, anon_sym_RPAREN, - ACTIONS(1624), 1, + ACTIONS(1522), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, - STATE(1007), 1, + STATE(1036), 1, sym_comma_expression, ACTIONS(31), 2, anon_sym_STAR, @@ -39469,23 +37660,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1524), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1626), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 11, + STATE(577), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -39497,7 +37694,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [30519] = 17, + [4903] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -39506,13 +37703,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1628), 1, + ACTIONS(1526), 1, anon_sym_RPAREN, - ACTIONS(1630), 1, + ACTIONS(1528), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, - STATE(1006), 1, + STATE(1149), 1, sym_comma_expression, ACTIONS(31), 2, anon_sym_STAR, @@ -39526,23 +37723,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1530), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1632), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(610), 11, + STATE(578), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -39554,7 +37757,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [30593] = 17, + [4983] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -39563,13 +37766,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1634), 1, + ACTIONS(1532), 1, anon_sym_RPAREN, - ACTIONS(1636), 1, + ACTIONS(1534), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, - STATE(1005), 1, + STATE(996), 1, sym_comma_expression, ACTIONS(31), 2, anon_sym_STAR, @@ -39583,23 +37786,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1536), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1638), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(601), 11, + STATE(612), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -39611,7 +37820,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [30667] = 15, + [5063] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(906), 1, @@ -39622,19 +37831,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(922), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, - STATE(436), 1, + STATE(502), 1, sym_initializer_list, ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, ACTIONS(914), 2, anon_sym_DASH, anon_sym_PLUS, @@ -39649,7 +37852,19 @@ static uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_identifier, - STATE(413), 16, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(479), 16, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -39666,7 +37881,7 @@ static uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [30737] = 17, + [5139] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -39675,13 +37890,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1640), 1, - anon_sym_SEMI, - ACTIONS(1642), 1, + ACTIONS(1538), 1, + anon_sym_RPAREN, + ACTIONS(1540), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, - STATE(1129), 1, + STATE(998), 1, sym_comma_expression, ACTIONS(31), 2, anon_sym_STAR, @@ -39695,23 +37910,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1542), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1644), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(578), 11, + STATE(610), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -39723,7 +37944,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [30811] = 17, + [5219] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -39732,13 +37953,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1646), 1, + ACTIONS(1544), 1, anon_sym_RPAREN, - ACTIONS(1648), 1, + ACTIONS(1546), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, - STATE(1126), 1, + STATE(1000), 1, sym_comma_expression, ACTIONS(31), 2, anon_sym_STAR, @@ -39752,23 +37973,92 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1548), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1650), 3, + STATE(505), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(614), 11, + sym__expression, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [5299] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(27), 1, + anon_sym_LPAREN2, + ACTIONS(75), 1, + anon_sym_sizeof, + ACTIONS(958), 1, + sym_identifier, + ACTIONS(1550), 1, + anon_sym_SEMI, + ACTIONS(1552), 1, + sym_number_literal, + STATE(380), 1, + sym_string_literal, + STATE(1097), 1, + sym_comma_expression, + ACTIONS(31), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(69), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(71), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(73), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1554), 3, sym_true, sym_false, sym_null, - STATE(440), 5, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(602), 11, + STATE(599), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -39780,7 +38070,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [30885] = 17, + [5379] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -39789,13 +38079,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1652), 1, + ACTIONS(1556), 1, anon_sym_RPAREN, - ACTIONS(1654), 1, + ACTIONS(1558), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, - STATE(1004), 1, + STATE(1002), 1, sym_comma_expression, ACTIONS(31), 2, anon_sym_STAR, @@ -39809,23 +38099,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1560), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1656), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(603), 11, + STATE(611), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -39837,7 +38133,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [30959] = 17, + [5459] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -39846,13 +38142,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1658), 1, - anon_sym_RPAREN, - ACTIONS(1660), 1, + ACTIONS(1562), 1, + anon_sym_SEMI, + ACTIONS(1564), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, - STATE(998), 1, + STATE(1019), 1, sym_comma_expression, ACTIONS(31), 2, anon_sym_STAR, @@ -39866,23 +38162,92 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1566), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1662), 3, + STATE(505), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(595), 11, + sym__expression, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [5539] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(27), 1, + anon_sym_LPAREN2, + ACTIONS(75), 1, + anon_sym_sizeof, + ACTIONS(908), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + ACTIONS(1568), 1, + sym_number_literal, + STATE(380), 1, + sym_string_literal, + STATE(951), 1, + sym_initializer_list, + ACTIONS(31), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(69), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(71), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(73), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1570), 3, sym_true, sym_false, sym_null, - STATE(440), 5, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(609), 11, + STATE(588), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -39894,7 +38259,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [31033] = 17, + [5619] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -39903,13 +38268,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1664), 1, + ACTIONS(1572), 1, anon_sym_RPAREN, - ACTIONS(1666), 1, + ACTIONS(1574), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, - STATE(1130), 1, + STATE(1014), 1, sym_comma_expression, ACTIONS(31), 2, anon_sym_STAR, @@ -39923,23 +38288,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1576), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1668), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(599), 11, + STATE(580), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -39951,7 +38322,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [31107] = 17, + [5699] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -39960,13 +38331,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1670), 1, - anon_sym_SEMI, - ACTIONS(1672), 1, + ACTIONS(1578), 1, + anon_sym_RPAREN, + ACTIONS(1580), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, - STATE(1056), 1, + STATE(1130), 1, sym_comma_expression, ACTIONS(31), 2, anon_sym_STAR, @@ -39980,23 +38351,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1582), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1674), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(575), 11, + STATE(598), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -40008,23 +38385,23 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [31181] = 17, + [5779] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, anon_sym_LPAREN2, ACTIONS(75), 1, anon_sym_sizeof, - ACTIONS(908), 1, - anon_sym_LBRACE, - ACTIONS(922), 1, - sym_number_literal, ACTIONS(958), 1, sym_identifier, - STATE(386), 1, + ACTIONS(1584), 1, + anon_sym_RPAREN, + ACTIONS(1586), 1, + sym_number_literal, + STATE(380), 1, sym_string_literal, - STATE(436), 1, - sym_initializer_list, + STATE(1081), 1, + sym_comma_expression, ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, @@ -40037,23 +38414,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1588), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(902), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(413), 11, + STATE(574), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -40065,7 +38448,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [31255] = 17, + [5859] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -40074,13 +38457,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1676), 1, - anon_sym_SEMI, - ACTIONS(1678), 1, + ACTIONS(1590), 1, + anon_sym_RPAREN, + ACTIONS(1592), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, - STATE(1013), 1, + STATE(1125), 1, sym_comma_expression, ACTIONS(31), 2, anon_sym_STAR, @@ -40094,23 +38477,92 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1594), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1680), 3, + STATE(505), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(601), 11, + sym__expression, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [5939] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(27), 1, + anon_sym_LPAREN2, + ACTIONS(75), 1, + anon_sym_sizeof, + ACTIONS(958), 1, + sym_identifier, + ACTIONS(1596), 1, + anon_sym_RPAREN, + ACTIONS(1598), 1, + sym_number_literal, + STATE(380), 1, + sym_string_literal, + STATE(1042), 1, + sym_comma_expression, + ACTIONS(31), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(69), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(71), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(73), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1600), 3, sym_true, sym_false, sym_null, - STATE(440), 5, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(587), 11, + STATE(582), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -40122,7 +38574,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [31329] = 17, + [6019] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -40131,13 +38583,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1682), 1, + ACTIONS(1602), 1, anon_sym_RPAREN, - ACTIONS(1684), 1, + ACTIONS(1604), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, - STATE(1071), 1, + STATE(1043), 1, sym_comma_expression, ACTIONS(31), 2, anon_sym_STAR, @@ -40151,23 +38603,92 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1606), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1686), 3, + STATE(505), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(585), 11, + sym__expression, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [6099] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(27), 1, + anon_sym_LPAREN2, + ACTIONS(75), 1, + anon_sym_sizeof, + ACTIONS(958), 1, + sym_identifier, + ACTIONS(1608), 1, + anon_sym_RPAREN, + ACTIONS(1610), 1, + sym_number_literal, + STATE(380), 1, + sym_string_literal, + STATE(1021), 1, + sym_comma_expression, + ACTIONS(31), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(69), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(71), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(73), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1612), 3, sym_true, sym_false, sym_null, - STATE(440), 5, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(597), 11, + STATE(583), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -40179,7 +38700,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [31403] = 17, + [6179] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -40188,13 +38709,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1688), 1, + ACTIONS(1614), 1, anon_sym_RPAREN, - ACTIONS(1690), 1, + ACTIONS(1616), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, - STATE(1039), 1, + STATE(1046), 1, sym_comma_expression, ACTIONS(31), 2, anon_sym_STAR, @@ -40208,23 +38729,92 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1618), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1692), 3, + STATE(505), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(587), 11, + sym__expression, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [6259] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(27), 1, + anon_sym_LPAREN2, + ACTIONS(75), 1, + anon_sym_sizeof, + ACTIONS(908), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + ACTIONS(1620), 1, + sym_number_literal, + STATE(380), 1, + sym_string_literal, + STATE(978), 1, + sym_initializer_list, + ACTIONS(31), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(69), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(71), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(73), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1622), 3, sym_true, sym_false, sym_null, - STATE(440), 5, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(580), 11, + STATE(608), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -40236,7 +38826,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [31477] = 17, + [6339] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -40245,13 +38835,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1694), 1, + ACTIONS(1624), 1, anon_sym_RPAREN, - ACTIONS(1696), 1, + ACTIONS(1626), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, - STATE(1138), 1, + STATE(1048), 1, sym_comma_expression, ACTIONS(31), 2, anon_sym_STAR, @@ -40265,23 +38855,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1628), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1698), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(600), 11, + STATE(589), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -40293,7 +38889,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [31551] = 17, + [6419] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -40302,13 +38898,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1700), 1, + ACTIONS(1630), 1, anon_sym_RPAREN, - ACTIONS(1702), 1, + ACTIONS(1632), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, - STATE(1058), 1, + STATE(993), 1, sym_comma_expression, ACTIONS(31), 2, anon_sym_STAR, @@ -40322,23 +38918,92 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1634), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1704), 3, + STATE(505), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(576), 11, + sym__expression, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [6499] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(27), 1, + anon_sym_LPAREN2, + ACTIONS(75), 1, + anon_sym_sizeof, + ACTIONS(958), 1, + sym_identifier, + ACTIONS(1636), 1, + anon_sym_RPAREN, + ACTIONS(1638), 1, + sym_number_literal, + STATE(380), 1, + sym_string_literal, + STATE(1015), 1, + sym_comma_expression, + ACTIONS(31), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(69), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(71), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(73), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1640), 3, sym_true, sym_false, sym_null, - STATE(440), 5, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(613), 11, + STATE(581), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -40350,7 +39015,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [31625] = 17, + [6579] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -40359,13 +39024,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1706), 1, - anon_sym_SEMI, - ACTIONS(1708), 1, + ACTIONS(1642), 1, + anon_sym_RPAREN, + ACTIONS(1644), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, - STATE(1020), 1, + STATE(1050), 1, sym_comma_expression, ACTIONS(31), 2, anon_sym_STAR, @@ -40379,23 +39044,92 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1646), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1710), 3, + STATE(505), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(593), 11, + sym__expression, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [6659] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(27), 1, + anon_sym_LPAREN2, + ACTIONS(75), 1, + anon_sym_sizeof, + ACTIONS(958), 1, + sym_identifier, + ACTIONS(1648), 1, + anon_sym_RPAREN, + ACTIONS(1650), 1, + sym_number_literal, + STATE(380), 1, + sym_string_literal, + STATE(1035), 1, + sym_comma_expression, + ACTIONS(31), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(69), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(71), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(73), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1652), 3, sym_true, sym_false, sym_null, - STATE(440), 5, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(576), 11, + STATE(586), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -40407,7 +39141,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [31699] = 17, + [6739] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -40416,13 +39150,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1712), 1, + ACTIONS(1654), 1, anon_sym_RPAREN, - ACTIONS(1714), 1, + ACTIONS(1656), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, - STATE(1149), 1, + STATE(1053), 1, sym_comma_expression, ACTIONS(31), 2, anon_sym_STAR, @@ -40436,23 +39170,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1658), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1716), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(585), 11, + STATE(596), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -40464,64 +39204,493 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [31773] = 17, + [6819] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(27), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(958), 1, + ACTIONS(1666), 1, + anon_sym_LBRACK, + ACTIONS(1668), 1, + anon_sym_EQ, + ACTIONS(1670), 1, + anon_sym_AMP, + ACTIONS(1674), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_CARET, + STATE(512), 1, + sym_argument_list, + ACTIONS(1672), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1678), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1680), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1682), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1684), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1686), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1688), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1664), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1660), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [6898] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym___attribute__, + ACTIONS(41), 1, + anon_sym_enum, + ACTIONS(43), 1, + anon_sym_struct, + ACTIONS(45), 1, + anon_sym_union, + ACTIONS(648), 1, + sym_primitive_type, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(1718), 1, + ACTIONS(1383), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1385), 1, anon_sym_RPAREN, - ACTIONS(1720), 1, + ACTIONS(1391), 1, + anon_sym_LBRACK, + ACTIONS(1690), 1, + anon_sym_LPAREN2, + ACTIONS(1692), 1, + anon_sym_STAR, + STATE(712), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(756), 1, + sym__declaration_specifiers, + STATE(892), 1, + sym_parameter_list, + STATE(931), 1, + sym_parameter_declaration, + ACTIONS(35), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(37), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(570), 4, + sym_attribute_specifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(33), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(880), 5, + sym__abstract_declarator, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(723), 6, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + [6987] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(906), 1, + anon_sym_LPAREN2, + ACTIONS(920), 1, + anon_sym_sizeof, + ACTIONS(1696), 1, + anon_sym_RBRACK, + ACTIONS(1698), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, - STATE(1081), 1, - sym_comma_expression, ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, + ACTIONS(914), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(73), 2, + ACTIONS(916), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(918), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1694), 4, + sym_true, + sym_false, + sym_null, + sym_identifier, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1722), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(572), 11, + STATE(484), 16, sym__expression, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [31847] = 17, + [7060] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1662), 1, + anon_sym_LPAREN2, + ACTIONS(1666), 1, + anon_sym_LBRACK, + STATE(512), 1, + sym_argument_list, + ACTIONS(1672), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1684), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1686), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1688), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1664), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1668), 6, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1660), 23, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [7127] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1662), 1, + anon_sym_LPAREN2, + ACTIONS(1666), 1, + anon_sym_LBRACK, + STATE(512), 1, + sym_argument_list, + ACTIONS(1672), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1680), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1682), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1684), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1686), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1688), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1664), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1668), 4, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(1660), 21, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [7198] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1662), 1, + anon_sym_LPAREN2, + ACTIONS(1666), 1, + anon_sym_LBRACK, + ACTIONS(1670), 1, + anon_sym_AMP, + STATE(512), 1, + sym_argument_list, + ACTIONS(1672), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1678), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1680), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1682), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1684), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1686), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1688), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1664), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1668), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(1660), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [7273] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1662), 1, + anon_sym_LPAREN2, + ACTIONS(1666), 1, + anon_sym_LBRACK, + ACTIONS(1670), 1, + anon_sym_AMP, + ACTIONS(1676), 1, + anon_sym_CARET, + STATE(512), 1, + sym_argument_list, + ACTIONS(1668), 2, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(1672), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1678), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1680), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1682), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1684), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1686), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1688), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1664), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1660), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [7350] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1662), 1, + anon_sym_LPAREN2, + ACTIONS(1666), 1, + anon_sym_LBRACK, + ACTIONS(1668), 1, + anon_sym_EQ, + ACTIONS(1670), 1, + anon_sym_AMP, + ACTIONS(1674), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_CARET, + ACTIONS(1700), 1, + anon_sym_AMP_AMP, + STATE(512), 1, + sym_argument_list, + ACTIONS(1672), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1678), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1680), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1682), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1684), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1686), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1688), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1664), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1660), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + [7431] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -40530,14 +39699,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1724), 1, - anon_sym_RPAREN, - ACTIONS(1726), 1, + ACTIONS(1702), 1, + anon_sym_SEMI, + ACTIONS(1704), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, - STATE(993), 1, - sym_comma_expression, ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, @@ -40550,23 +39717,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1706), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1728), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(596), 11, + STATE(649), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -40578,7 +39751,61 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [31921] = 17, + [7508] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1662), 1, + anon_sym_LPAREN2, + ACTIONS(1666), 1, + anon_sym_LBRACK, + STATE(512), 1, + sym_argument_list, + ACTIONS(1686), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1688), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1664), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1668), 10, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1660), 23, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [7571] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -40587,14 +39814,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1730), 1, - anon_sym_RPAREN, - ACTIONS(1732), 1, + ACTIONS(1708), 1, + anon_sym_SEMI, + ACTIONS(1710), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, - STATE(1053), 1, - sym_comma_expression, ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, @@ -40607,23 +39832,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1712), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1734), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(594), 11, + STATE(650), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -40635,7 +39866,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [31995] = 17, + [7648] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -40644,14 +39875,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1736), 1, - anon_sym_RPAREN, - ACTIONS(1738), 1, + ACTIONS(1714), 1, + anon_sym_SEMI, + ACTIONS(1716), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, - STATE(1050), 1, - sym_comma_expression, ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, @@ -40664,23 +39893,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1718), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1740), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(591), 11, + STATE(651), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -40692,7 +39927,66 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [32069] = 17, + [7725] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1662), 1, + anon_sym_LPAREN2, + ACTIONS(1666), 1, + anon_sym_LBRACK, + STATE(512), 1, + sym_argument_list, + ACTIONS(1672), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1678), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1680), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1682), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1684), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1686), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1688), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1664), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1668), 4, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(1660), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [7798] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -40701,14 +39995,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1742), 1, - anon_sym_RPAREN, - ACTIONS(1744), 1, + ACTIONS(1720), 1, + anon_sym_SEMI, + ACTIONS(1722), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, - STATE(1048), 1, - sym_comma_expression, ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, @@ -40721,23 +40013,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1724), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1746), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(588), 11, + STATE(658), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -40749,7 +40047,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [32143] = 17, + [7875] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -40758,14 +40056,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1748), 1, - anon_sym_RPAREN, - ACTIONS(1750), 1, + ACTIONS(1726), 1, + anon_sym_SEMI, + ACTIONS(1728), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, - STATE(1046), 1, - sym_comma_expression, ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, @@ -40778,23 +40074,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1730), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1752), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(586), 11, + STATE(661), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -40806,7 +40108,71 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [32217] = 17, + [7952] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1662), 1, + anon_sym_LPAREN2, + ACTIONS(1666), 1, + anon_sym_LBRACK, + ACTIONS(1670), 1, + anon_sym_AMP, + ACTIONS(1674), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_CARET, + ACTIONS(1700), 1, + anon_sym_AMP_AMP, + ACTIONS(1734), 1, + anon_sym_EQ, + ACTIONS(1736), 1, + anon_sym_PIPE_PIPE, + STATE(512), 1, + sym_argument_list, + ACTIONS(1672), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1678), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1680), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1682), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1684), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1686), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1688), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1664), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1732), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [8035] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -40815,14 +40181,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1754), 1, - anon_sym_RPAREN, - ACTIONS(1756), 1, + ACTIONS(1738), 1, + anon_sym_SEMI, + ACTIONS(1740), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, - STATE(1042), 1, - sym_comma_expression, ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, @@ -40835,23 +40199,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1742), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1758), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(583), 11, + STATE(662), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -40863,80 +40233,80 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [32291] = 17, + [8112] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(27), 1, + ACTIONS(906), 1, anon_sym_LPAREN2, - ACTIONS(75), 1, + ACTIONS(920), 1, anon_sym_sizeof, - ACTIONS(908), 1, - anon_sym_LBRACE, - ACTIONS(958), 1, - sym_identifier, - ACTIONS(1760), 1, + ACTIONS(1698), 1, sym_number_literal, - STATE(386), 1, + ACTIONS(1744), 1, + anon_sym_RBRACK, + STATE(380), 1, sym_string_literal, - STATE(978), 1, - sym_initializer_list, ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, + ACTIONS(914), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(73), 2, + ACTIONS(916), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(918), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1694), 4, + sym_true, + sym_false, + sym_null, + sym_identifier, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1762), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(584), 11, + STATE(484), 16, sym__expression, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [32365] = 17, + [8185] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, anon_sym_LPAREN2, ACTIONS(75), 1, anon_sym_sizeof, - ACTIONS(908), 1, - anon_sym_LBRACE, ACTIONS(958), 1, sym_identifier, - ACTIONS(1764), 1, + ACTIONS(1746), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, - STATE(974), 1, - sym_initializer_list, + STATE(958), 1, + sym_comma_expression, ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, @@ -40949,23 +40319,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1748), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1766), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(608), 11, + STATE(572), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -40977,7 +40353,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [32439] = 17, + [8262] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -40986,14 +40362,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1768), 1, - anon_sym_RPAREN, - ACTIONS(1770), 1, + ACTIONS(1750), 1, + anon_sym_SEMI, + ACTIONS(1752), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, - STATE(1125), 1, - sym_comma_expression, ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, @@ -41006,23 +40380,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1754), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1772), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(606), 11, + STATE(664), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -41034,7 +40414,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [32513] = 17, + [8339] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -41043,14 +40423,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1774), 1, + ACTIONS(1756), 1, anon_sym_RPAREN, - ACTIONS(1776), 1, + ACTIONS(1758), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, - STATE(1094), 1, - sym_comma_expression, ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, @@ -41063,23 +40441,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1760), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1778), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(574), 11, + STATE(571), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -41091,7 +40475,60 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [32587] = 17, + [8416] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1662), 1, + anon_sym_LPAREN2, + ACTIONS(1666), 1, + anon_sym_LBRACK, + STATE(512), 1, + sym_argument_list, + ACTIONS(1686), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1688), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1668), 13, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1660), 23, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [8477] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -41100,14 +40537,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1780), 1, - anon_sym_RPAREN, - ACTIONS(1782), 1, + ACTIONS(1762), 1, + anon_sym_SEMI, + ACTIONS(1764), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, - STATE(1088), 1, - sym_comma_expression, ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, @@ -41120,23 +40555,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1766), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1784), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 11, + STATE(663), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -41148,60 +40589,62 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [32661] = 14, + [8554] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(906), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(920), 1, - anon_sym_sizeof, - ACTIONS(1788), 1, - anon_sym_RBRACK, - ACTIONS(1790), 1, - sym_number_literal, - STATE(386), 1, - sym_string_literal, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(914), 2, + ACTIONS(1666), 1, + anon_sym_LBRACK, + STATE(512), 1, + sym_argument_list, + ACTIONS(1672), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(916), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(918), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1786), 4, - sym_true, - sym_false, - sym_null, - sym_identifier, - STATE(428), 16, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - [32728] = 16, + ACTIONS(1688), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1664), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1668), 8, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1660), 23, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [8619] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -41210,11 +40653,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1792), 1, + ACTIONS(1768), 1, anon_sym_SEMI, - ACTIONS(1794), 1, + ACTIONS(1770), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, @@ -41228,17 +40671,23 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1772), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1796), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, @@ -41256,60 +40705,112 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [32799] = 14, + [8696] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(906), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(920), 1, - anon_sym_sizeof, - ACTIONS(1790), 1, - sym_number_literal, - ACTIONS(1798), 1, + ACTIONS(1666), 1, + anon_sym_LBRACK, + STATE(512), 1, + sym_argument_list, + ACTIONS(1686), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1688), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1776), 13, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1774), 23, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_RBRACK, - STATE(386), 1, - sym_string_literal, - ACTIONS(31), 2, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [8757] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1662), 1, + anon_sym_LPAREN2, + ACTIONS(1666), 1, + anon_sym_LBRACK, + STATE(512), 1, + sym_argument_list, + ACTIONS(1688), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1780), 13, anon_sym_STAR, + anon_sym_EQ, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(914), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(916), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(918), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1778), 25, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1786), 4, - sym_true, - sym_false, - sym_null, - sym_identifier, - STATE(428), 16, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - [32866] = 16, + [8816] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -41318,12 +40819,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1800), 1, - anon_sym_SEMI, - ACTIONS(1802), 1, + ACTIONS(1188), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, + STATE(1039), 1, + sym_comma_expression, ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, @@ -41336,109 +40837,56 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1190), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1804), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(646), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [32937] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(906), 1, - anon_sym_LPAREN2, - ACTIONS(920), 1, - anon_sym_sizeof, - ACTIONS(1790), 1, - sym_number_literal, - ACTIONS(1806), 1, - anon_sym_RBRACK, - STATE(386), 1, - sym_string_literal, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(914), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(916), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(918), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1786), 4, - sym_true, - sym_false, - sym_null, - sym_identifier, - STATE(428), 16, + STATE(579), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [33004] = 14, + [8893] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(906), 1, anon_sym_LPAREN2, ACTIONS(920), 1, anon_sym_sizeof, - ACTIONS(1790), 1, + ACTIONS(1698), 1, sym_number_literal, - ACTIONS(1808), 1, + ACTIONS(1782), 1, anon_sym_RBRACK, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, ACTIONS(914), 2, anon_sym_DASH, anon_sym_PLUS, @@ -41448,12 +40896,24 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(918), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1786), 4, + ACTIONS(1694), 4, sym_true, sym_false, sym_null, sym_identifier, - STATE(428), 16, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(484), 16, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -41470,28 +40930,22 @@ static uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [33071] = 14, + [8966] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(906), 1, anon_sym_LPAREN2, ACTIONS(920), 1, anon_sym_sizeof, - ACTIONS(1790), 1, + ACTIONS(1698), 1, sym_number_literal, - ACTIONS(1810), 1, + ACTIONS(1784), 1, anon_sym_RBRACK, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, ACTIONS(914), 2, anon_sym_DASH, anon_sym_PLUS, @@ -41501,12 +40955,24 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(918), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1786), 4, + ACTIONS(1694), 4, sym_true, sym_false, sym_null, sym_identifier, - STATE(428), 16, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(484), 16, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -41523,7 +40989,7 @@ static uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [33138] = 16, + [9039] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -41532,12 +40998,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1188), 1, + ACTIONS(1786), 1, + anon_sym_SEMI, + ACTIONS(1788), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, - STATE(1036), 1, - sym_comma_expression, ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, @@ -41550,23 +41016,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1790), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1190), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(579), 11, + STATE(645), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -41578,28 +41050,22 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [33209] = 14, + [9116] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(906), 1, anon_sym_LPAREN2, ACTIONS(920), 1, anon_sym_sizeof, - ACTIONS(1790), 1, + ACTIONS(1698), 1, sym_number_literal, - ACTIONS(1812), 1, + ACTIONS(1792), 1, anon_sym_RBRACK, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, ACTIONS(914), 2, anon_sym_DASH, anon_sym_PLUS, @@ -41609,12 +41075,24 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(918), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1786), 4, + ACTIONS(1694), 4, sym_true, sym_false, sym_null, sym_identifier, - STATE(428), 16, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(484), 16, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -41631,7 +41109,7 @@ static uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [33276] = 16, + [9189] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -41640,11 +41118,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1814), 1, + ACTIONS(1794), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, - STATE(944), 1, + STATE(1116), 1, sym_comma_expression, ACTIONS(31), 2, anon_sym_STAR, @@ -41658,23 +41136,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1796), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1816), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(570), 11, + STATE(603), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -41686,138 +41170,137 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [33347] = 16, + [9266] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(27), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(958), 1, - sym_identifier, - ACTIONS(1818), 1, - anon_sym_RPAREN, - ACTIONS(1820), 1, - sym_number_literal, - STATE(386), 1, - sym_string_literal, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, + ACTIONS(1666), 1, + anon_sym_LBRACK, + STATE(512), 1, + sym_argument_list, + ACTIONS(1672), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(73), 2, + ACTIONS(1684), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1822), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(569), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [33418] = 16, + ACTIONS(1688), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1664), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1800), 6, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1798), 23, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [9333] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(27), 1, + ACTIONS(906), 1, anon_sym_LPAREN2, - ACTIONS(75), 1, + ACTIONS(920), 1, anon_sym_sizeof, - ACTIONS(958), 1, - sym_identifier, - ACTIONS(1824), 1, - anon_sym_SEMI, - ACTIONS(1826), 1, + ACTIONS(1698), 1, sym_number_literal, - STATE(386), 1, + ACTIONS(1802), 1, + anon_sym_RBRACK, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, + ACTIONS(914), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(73), 2, + ACTIONS(916), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(918), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1694), 4, + sym_true, + sym_false, + sym_null, + sym_identifier, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1828), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(636), 11, + STATE(484), 16, sym__expression, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [33489] = 14, + [9406] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(906), 1, anon_sym_LPAREN2, ACTIONS(920), 1, anon_sym_sizeof, - ACTIONS(1790), 1, + ACTIONS(1698), 1, sym_number_literal, - ACTIONS(1830), 1, + ACTIONS(1804), 1, anon_sym_RBRACK, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, ACTIONS(914), 2, anon_sym_DASH, anon_sym_PLUS, @@ -41827,12 +41310,24 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(918), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1786), 4, + ACTIONS(1694), 4, sym_true, sym_false, sym_null, sym_identifier, - STATE(428), 16, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(484), 16, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -41849,7 +41344,173 @@ static uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [33556] = 16, + [9479] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1662), 1, + anon_sym_LPAREN2, + ACTIONS(1666), 1, + anon_sym_LBRACK, + STATE(512), 1, + sym_argument_list, + ACTIONS(1686), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1688), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1808), 13, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1806), 23, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [9540] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1812), 13, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1810), 30, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [9591] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1662), 1, + anon_sym_LPAREN2, + ACTIONS(1666), 1, + anon_sym_LBRACK, + ACTIONS(1670), 1, + anon_sym_AMP, + ACTIONS(1674), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_CARET, + ACTIONS(1700), 1, + anon_sym_AMP_AMP, + ACTIONS(1736), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1816), 1, + anon_sym_EQ, + ACTIONS(1818), 1, + anon_sym_QMARK, + STATE(512), 1, + sym_argument_list, + ACTIONS(1672), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1678), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1680), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1682), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1684), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1686), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1688), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1664), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1814), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [9676] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -41858,11 +41519,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1832), 1, + ACTIONS(1820), 1, anon_sym_SEMI, - ACTIONS(1834), 1, + ACTIONS(1822), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, @@ -41876,23 +41537,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1824), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1836), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(644), 11, + STATE(643), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -41904,7 +41571,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [33627] = 16, + [9753] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -41913,12 +41580,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1838), 1, + ACTIONS(1826), 1, + anon_sym_SEMI, + ACTIONS(1828), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, - STATE(1132), 1, - sym_comma_expression, ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, @@ -41931,23 +41598,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1830), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1840), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(582), 11, + STATE(618), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -41959,227 +41632,294 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [33698] = 16, + [9830] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(27), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(958), 1, - sym_identifier, - ACTIONS(1842), 1, + ACTIONS(1666), 1, + anon_sym_LBRACK, + STATE(512), 1, + sym_argument_list, + ACTIONS(1686), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1688), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1834), 13, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1832), 23, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - ACTIONS(1844), 1, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [9891] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(906), 1, + anon_sym_LPAREN2, + ACTIONS(920), 1, + anon_sym_sizeof, + ACTIONS(1698), 1, sym_number_literal, - STATE(386), 1, + ACTIONS(1836), 1, + anon_sym_RBRACK, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, + ACTIONS(914), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(73), 2, + ACTIONS(916), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(918), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1694), 4, + sym_true, + sym_false, + sym_null, + sym_identifier, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1846), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(658), 11, + STATE(484), 16, sym__expression, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [33769] = 16, + [9964] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(27), 1, + ACTIONS(906), 1, anon_sym_LPAREN2, - ACTIONS(75), 1, + ACTIONS(920), 1, anon_sym_sizeof, - ACTIONS(958), 1, - sym_identifier, - ACTIONS(1848), 1, - anon_sym_SEMI, - ACTIONS(1850), 1, + ACTIONS(1698), 1, sym_number_literal, - STATE(386), 1, + ACTIONS(1838), 1, + anon_sym_RBRACK, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, + ACTIONS(914), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(73), 2, + ACTIONS(916), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(918), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1694), 4, + sym_true, + sym_false, + sym_null, + sym_identifier, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1852), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(647), 11, + STATE(484), 16, sym__expression, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [33840] = 16, + [10037] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(27), 1, + ACTIONS(906), 1, anon_sym_LPAREN2, - ACTIONS(75), 1, + ACTIONS(920), 1, anon_sym_sizeof, - ACTIONS(958), 1, - sym_identifier, - ACTIONS(1854), 1, - anon_sym_SEMI, - ACTIONS(1856), 1, + ACTIONS(1698), 1, sym_number_literal, - STATE(386), 1, + ACTIONS(1840), 1, + anon_sym_RBRACK, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, + ACTIONS(914), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(73), 2, + ACTIONS(916), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(918), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1694), 4, + sym_true, + sym_false, + sym_null, + sym_identifier, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1858), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(648), 11, + STATE(484), 16, sym__expression, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [33911] = 16, + [10110] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(27), 1, + ACTIONS(906), 1, anon_sym_LPAREN2, - ACTIONS(75), 1, + ACTIONS(920), 1, anon_sym_sizeof, - ACTIONS(958), 1, - sym_identifier, - ACTIONS(1860), 1, - anon_sym_SEMI, - ACTIONS(1862), 1, + ACTIONS(1844), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, + ACTIONS(914), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(73), 2, + ACTIONS(916), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(918), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1842), 4, + sym_true, + sym_false, + sym_null, + sym_identifier, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1864), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(654), 11, + STATE(450), 16, sym__expression, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [33982] = 16, + [10180] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -42188,11 +41928,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1866), 1, - anon_sym_SEMI, - ACTIONS(1868), 1, + ACTIONS(1846), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, @@ -42206,23 +41944,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1848), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1870), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(655), 11, + STATE(564), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -42234,7 +41978,54 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [34053] = 16, + [10254] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1852), 13, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1850), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LPAREN2, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [10304] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -42243,11 +42034,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1872), 1, - anon_sym_SEMI, - ACTIONS(1874), 1, + ACTIONS(1854), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, @@ -42261,23 +42050,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1856), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1876), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(616), 11, + STATE(657), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -42289,83 +42084,271 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [34124] = 16, + [10378] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(27), 1, + ACTIONS(1860), 13, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1858), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(958), 1, - sym_identifier, - ACTIONS(1878), 1, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [10428] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1864), 13, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1862), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - ACTIONS(1880), 1, + anon_sym_LPAREN2, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [10478] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1225), 1, + anon_sym_LPAREN2, + ACTIONS(1229), 1, + anon_sym_STAR, + ACTIONS(1232), 1, + anon_sym_EQ, + ACTIONS(1222), 2, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(1866), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(1236), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1238), 11, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1220), 12, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [10540] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(906), 1, + anon_sym_LPAREN2, + ACTIONS(920), 1, + anon_sym_sizeof, + ACTIONS(1870), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, + ACTIONS(914), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(73), 2, + ACTIONS(916), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(918), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1868), 4, + sym_true, + sym_false, + sym_null, + sym_identifier, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1882), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(656), 11, + STATE(481), 16, sym__expression, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [34195] = 14, + [10610] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1874), 13, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1872), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LPAREN2, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [10660] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(906), 1, anon_sym_LPAREN2, ACTIONS(920), 1, anon_sym_sizeof, - ACTIONS(1790), 1, + ACTIONS(1878), 1, sym_number_literal, - ACTIONS(1884), 1, - anon_sym_RBRACK, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, ACTIONS(914), 2, anon_sym_DASH, anon_sym_PLUS, @@ -42375,12 +42358,24 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(918), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1786), 4, + ACTIONS(1876), 4, sym_true, sym_false, sym_null, sym_identifier, - STATE(428), 16, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(469), 16, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -42397,28 +42392,20 @@ static uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [34262] = 14, + [10730] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(906), 1, anon_sym_LPAREN2, ACTIONS(920), 1, anon_sym_sizeof, - ACTIONS(1790), 1, + ACTIONS(1882), 1, sym_number_literal, - ACTIONS(1886), 1, - anon_sym_RBRACK, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, ACTIONS(914), 2, anon_sym_DASH, anon_sym_PLUS, @@ -42428,12 +42415,24 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(918), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1786), 4, + ACTIONS(1880), 4, sym_true, sym_false, sym_null, sym_identifier, - STATE(428), 16, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(468), 16, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -42450,83 +42449,77 @@ static uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [34329] = 16, + [10800] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, + ACTIONS(920), 1, anon_sym_sizeof, - ACTIONS(958), 1, - sym_identifier, + ACTIONS(1886), 1, + anon_sym_LPAREN2, ACTIONS(1888), 1, - anon_sym_SEMI, - ACTIONS(1890), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, + ACTIONS(914), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(73), 2, + ACTIONS(916), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(918), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1884), 4, + sym_true, + sym_false, + sym_null, + sym_identifier, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1892), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(663), 11, + STATE(476), 16, sym__expression, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [34400] = 14, + [10870] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(906), 1, anon_sym_LPAREN2, ACTIONS(920), 1, anon_sym_sizeof, - ACTIONS(1790), 1, + ACTIONS(1698), 1, sym_number_literal, - ACTIONS(1894), 1, - anon_sym_RBRACK, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, ACTIONS(914), 2, anon_sym_DASH, anon_sym_PLUS, @@ -42536,12 +42529,24 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(918), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1786), 4, + ACTIONS(1694), 4, sym_true, sym_false, sym_null, sym_identifier, - STATE(428), 16, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(484), 16, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -42558,109 +42563,280 @@ static uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [34467] = 13, + [10940] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(906), 1, + ACTIONS(27), 1, anon_sym_LPAREN2, - ACTIONS(920), 1, + ACTIONS(75), 1, anon_sym_sizeof, - ACTIONS(1898), 1, + ACTIONS(958), 1, + sym_identifier, + ACTIONS(1890), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(69), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(71), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(73), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1892), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(914), 2, + STATE(505), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(557), 11, + sym__expression, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [11014] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1896), 13, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_AMP, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(916), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1894), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LPAREN2, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [11064] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(27), 1, + anon_sym_LPAREN2, + ACTIONS(75), 1, + anon_sym_sizeof, + ACTIONS(958), 1, + sym_identifier, + ACTIONS(1898), 1, + sym_number_literal, + STATE(380), 1, + sym_string_literal, + ACTIONS(31), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(69), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(918), 2, + ACTIONS(71), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1896), 4, + ACTIONS(1900), 3, sym_true, sym_false, sym_null, - sym_identifier, - STATE(425), 16, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(505), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(604), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [34531] = 13, + [11138] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(906), 1, + ACTIONS(27), 1, anon_sym_LPAREN2, - ACTIONS(920), 1, + ACTIONS(75), 1, anon_sym_sizeof, + ACTIONS(958), 1, + sym_identifier, ACTIONS(1902), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(914), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(916), 2, + ACTIONS(69), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(918), 2, + ACTIONS(71), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1900), 4, + ACTIONS(1904), 3, sym_true, sym_false, sym_null, - sym_identifier, - STATE(423), 16, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(505), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(619), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [34595] = 15, + [11212] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1232), 1, + anon_sym_EQ, + ACTIONS(1236), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1238), 12, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1220), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LPAREN2, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [11266] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -42669,9 +42845,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1904), 1, + ACTIONS(1906), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, @@ -42685,23 +42861,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1908), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1906), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(560), 11, + STATE(647), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -42713,18 +42895,18 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [34663] = 15, + [11340] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, ACTIONS(75), 1, anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1908), 1, + ACTIONS(1910), 1, + anon_sym_LPAREN2, + ACTIONS(1912), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, @@ -42738,23 +42920,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1914), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1910), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(611), 11, + STATE(556), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -42766,7 +42954,54 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [34731] = 15, + [11414] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1918), 13, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1916), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LPAREN2, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [11464] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -42775,9 +43010,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1912), 1, + ACTIONS(1920), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, @@ -42791,23 +43026,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1922), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1914), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(651), 11, + STATE(641), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -42819,7 +43060,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [34799] = 15, + [11538] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -42828,9 +43069,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1916), 1, + ACTIONS(1882), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, @@ -42844,23 +43085,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1880), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1918), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(632), 11, + STATE(468), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -42872,7 +43119,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [34867] = 15, + [11612] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -42881,9 +43128,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1920), 1, + ACTIONS(1924), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, @@ -42897,23 +43144,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1926), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1922), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(640), 11, + STATE(639), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -42925,58 +43178,54 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [34935] = 13, + [11686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(920), 1, - anon_sym_sizeof, - ACTIONS(1926), 1, - anon_sym_LPAREN2, - ACTIONS(1928), 1, - sym_number_literal, - STATE(386), 1, - sym_string_literal, - ACTIONS(31), 2, + ACTIONS(1930), 13, anon_sym_STAR, + anon_sym_EQ, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(914), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(916), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(918), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1928), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LPAREN2, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1924), 4, - sym_true, - sym_false, - sym_null, - sym_identifier, - STATE(427), 16, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - [34999] = 15, + anon_sym_DOT, + anon_sym_DASH_GT, + [11736] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -42985,9 +43234,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1930), 1, + ACTIONS(1878), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, @@ -43001,23 +43250,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1876), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1932), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(554), 11, + STATE(469), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -43029,7 +43284,54 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [35067] = 15, + [11810] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1934), 13, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1932), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LPAREN2, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [11860] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -43038,9 +43340,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1934), 1, + ACTIONS(1936), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, @@ -43054,23 +43356,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1938), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1936), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(555), 11, + STATE(558), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -43082,7 +43390,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [35135] = 15, + [11934] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -43091,9 +43399,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1938), 1, + ACTIONS(1940), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, @@ -43107,23 +43415,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1942), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1940), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(557), 11, + STATE(559), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -43135,7 +43449,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [35203] = 15, + [12008] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -43144,9 +43458,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1942), 1, + ACTIONS(1944), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, @@ -43160,23 +43474,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1946), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1944), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(558), 11, + STATE(560), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -43188,332 +43508,244 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [35271] = 13, + [12082] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(906), 1, + ACTIONS(27), 1, anon_sym_LPAREN2, - ACTIONS(920), 1, + ACTIONS(75), 1, anon_sym_sizeof, + ACTIONS(958), 1, + sym_identifier, ACTIONS(1948), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(914), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(916), 2, + ACTIONS(69), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(918), 2, + ACTIONS(71), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1946), 4, + ACTIONS(1950), 3, sym_true, sym_false, sym_null, - sym_identifier, - STATE(417), 16, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(505), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(561), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [35335] = 13, + [12156] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(906), 1, + ACTIONS(27), 1, anon_sym_LPAREN2, - ACTIONS(920), 1, + ACTIONS(75), 1, anon_sym_sizeof, + ACTIONS(958), 1, + sym_identifier, ACTIONS(1952), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(914), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(916), 2, + ACTIONS(69), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(918), 2, + ACTIONS(71), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1950), 4, + ACTIONS(1954), 3, sym_true, sym_false, sym_null, - sym_identifier, - STATE(405), 16, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(505), 5, sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, - sym_compound_literal_expression, sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - [35399] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(906), 1, - anon_sym_LPAREN2, - ACTIONS(920), 1, - anon_sym_sizeof, - ACTIONS(1956), 1, - sym_number_literal, - STATE(386), 1, - sym_string_literal, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(914), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(916), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(918), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1954), 4, - sym_true, - sym_false, - sym_null, - sym_identifier, - STATE(404), 16, + STATE(562), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [35463] = 13, + [12230] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(906), 1, + ACTIONS(27), 1, anon_sym_LPAREN2, - ACTIONS(920), 1, + ACTIONS(75), 1, anon_sym_sizeof, - ACTIONS(1960), 1, + ACTIONS(958), 1, + sym_identifier, + ACTIONS(1956), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(914), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(916), 2, + ACTIONS(69), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(918), 2, + ACTIONS(71), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1958), 4, + ACTIONS(1958), 3, sym_true, sym_false, sym_null, - sym_identifier, - STATE(403), 16, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(505), 5, sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, - sym_compound_literal_expression, sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - [35527] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(906), 1, - anon_sym_LPAREN2, - ACTIONS(920), 1, - anon_sym_sizeof, - ACTIONS(1964), 1, - sym_number_literal, - STATE(386), 1, - sym_string_literal, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(914), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(916), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(918), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1962), 4, - sym_true, - sym_false, - sym_null, - sym_identifier, - STATE(410), 16, + STATE(563), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [35591] = 13, + [12304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(906), 1, - anon_sym_LPAREN2, - ACTIONS(920), 1, - anon_sym_sizeof, - ACTIONS(1968), 1, - sym_number_literal, - STATE(386), 1, - sym_string_literal, - ACTIONS(31), 2, + ACTIONS(1962), 13, anon_sym_STAR, + anon_sym_EQ, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(914), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(916), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(918), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1960), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LPAREN2, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1966), 4, - sym_true, - sym_false, - sym_null, - sym_identifier, - STATE(414), 16, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - [35655] = 13, + anon_sym_DOT, + anon_sym_DASH_GT, + [12354] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(906), 1, anon_sym_LPAREN2, ACTIONS(920), 1, anon_sym_sizeof, - ACTIONS(1972), 1, + ACTIONS(1966), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, ACTIONS(914), 2, anon_sym_DASH, anon_sym_PLUS, @@ -43523,12 +43755,24 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(918), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1970), 4, + ACTIONS(1964), 4, sym_true, sym_false, sym_null, sym_identifier, - STATE(415), 16, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(464), 16, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -43545,26 +43789,20 @@ static uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [35719] = 13, + [12424] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(906), 1, anon_sym_LPAREN2, ACTIONS(920), 1, anon_sym_sizeof, - ACTIONS(1976), 1, + ACTIONS(1970), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, ACTIONS(914), 2, anon_sym_DASH, anon_sym_PLUS, @@ -43574,12 +43812,24 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(918), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1974), 4, + ACTIONS(1968), 4, sym_true, sym_false, sym_null, sym_identifier, - STATE(419), 16, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(455), 16, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -43596,26 +43846,20 @@ static uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [35783] = 13, + [12494] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(906), 1, anon_sym_LPAREN2, ACTIONS(920), 1, anon_sym_sizeof, - ACTIONS(1980), 1, + ACTIONS(1974), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, ACTIONS(914), 2, anon_sym_DASH, anon_sym_PLUS, @@ -43625,12 +43869,24 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(918), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1978), 4, + ACTIONS(1972), 4, sym_true, sym_false, sym_null, sym_identifier, - STATE(421), 16, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(452), 16, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -43647,7 +43903,7 @@ static uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [35847] = 15, + [12564] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -43656,9 +43912,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1982), 1, + ACTIONS(1976), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, @@ -43672,23 +43928,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1978), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1984), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(612), 11, + STATE(652), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -43700,344 +43962,305 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [35915] = 15, + [12638] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(27), 1, + ACTIONS(906), 1, anon_sym_LPAREN2, - ACTIONS(75), 1, + ACTIONS(920), 1, anon_sym_sizeof, - ACTIONS(958), 1, - sym_identifier, - ACTIONS(1986), 1, + ACTIONS(1982), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, + ACTIONS(914), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(73), 2, + ACTIONS(916), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(918), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1988), 3, + ACTIONS(1980), 4, sym_true, sym_false, sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(559), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [35983] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(958), 1, sym_identifier, - ACTIONS(1990), 1, - sym_number_literal, - STATE(386), 1, - sym_string_literal, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1992), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(561), 11, + STATE(443), 16, sym__expression, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [36051] = 15, + [12708] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(27), 1, + ACTIONS(906), 1, anon_sym_LPAREN2, - ACTIONS(75), 1, + ACTIONS(920), 1, anon_sym_sizeof, - ACTIONS(958), 1, - sym_identifier, - ACTIONS(1994), 1, + ACTIONS(1986), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, + ACTIONS(914), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(73), 2, + ACTIONS(916), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(918), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1984), 4, + sym_true, + sym_false, + sym_null, + sym_identifier, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1996), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(562), 11, + STATE(449), 16, sym__expression, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [36119] = 15, + [12778] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(27), 1, + ACTIONS(906), 1, anon_sym_LPAREN2, - ACTIONS(75), 1, + ACTIONS(920), 1, anon_sym_sizeof, - ACTIONS(958), 1, - sym_identifier, - ACTIONS(1998), 1, + ACTIONS(1990), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, + ACTIONS(914), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(73), 2, + ACTIONS(916), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(918), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1988), 4, + sym_true, + sym_false, + sym_null, + sym_identifier, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2000), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(563), 11, + STATE(448), 16, sym__expression, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [36187] = 15, + [12848] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(27), 1, + ACTIONS(906), 1, anon_sym_LPAREN2, - ACTIONS(75), 1, + ACTIONS(920), 1, anon_sym_sizeof, - ACTIONS(958), 1, - sym_identifier, - ACTIONS(2002), 1, + ACTIONS(1994), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, + ACTIONS(914), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(73), 2, + ACTIONS(916), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(918), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1992), 4, + sym_true, + sym_false, + sym_null, + sym_identifier, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2004), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(564), 11, + STATE(447), 16, sym__expression, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [36255] = 15, + [12918] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(27), 1, + ACTIONS(906), 1, anon_sym_LPAREN2, - ACTIONS(75), 1, + ACTIONS(920), 1, anon_sym_sizeof, - ACTIONS(958), 1, - sym_identifier, - ACTIONS(2006), 1, + ACTIONS(1998), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, + ACTIONS(914), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(73), 2, + ACTIONS(916), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(918), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1996), 4, + sym_true, + sym_false, + sym_null, + sym_identifier, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2008), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(645), 11, + STATE(446), 16, sym__expression, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [36323] = 13, + [12988] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(906), 1, anon_sym_LPAREN2, ACTIONS(920), 1, anon_sym_sizeof, - ACTIONS(2012), 1, + ACTIONS(2002), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, ACTIONS(914), 2, anon_sym_DASH, anon_sym_PLUS, @@ -44047,12 +44270,24 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(918), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2010), 4, + ACTIONS(2000), 4, sym_true, sym_false, sym_null, sym_identifier, - STATE(426), 16, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(466), 16, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -44069,7 +44304,7 @@ static uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [36387] = 15, + [13058] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -44078,9 +44313,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(2014), 1, + ACTIONS(2004), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, @@ -44094,23 +44329,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(2006), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2016), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 11, + STATE(565), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -44122,7 +44363,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [36455] = 15, + [13132] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -44131,9 +44372,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1948), 1, + ACTIONS(2008), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, @@ -44147,23 +44388,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(2010), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1946), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(417), 11, + STATE(566), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -44175,7 +44422,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [36523] = 15, + [13206] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -44184,9 +44431,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(2018), 1, + ACTIONS(2012), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, @@ -44200,23 +44447,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(2014), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2020), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(664), 11, + STATE(630), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -44228,7 +44481,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [36591] = 15, + [13280] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -44237,9 +44490,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(2022), 1, + ACTIONS(2016), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, @@ -44253,23 +44506,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(2018), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2024), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(633), 11, + STATE(634), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -44281,7 +44540,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [36659] = 15, + [13354] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -44290,9 +44549,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(2026), 1, + ACTIONS(1966), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, @@ -44306,23 +44565,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(1964), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2028), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(464), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -44334,175 +44599,112 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [36727] = 13, + [13428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(906), 1, - anon_sym_LPAREN2, - ACTIONS(920), 1, - anon_sym_sizeof, - ACTIONS(2032), 1, - sym_number_literal, - STATE(386), 1, - sym_string_literal, - ACTIONS(31), 2, + ACTIONS(2022), 13, anon_sym_STAR, + anon_sym_EQ, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(914), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(916), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(918), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2030), 4, - sym_true, - sym_false, - sym_null, - sym_identifier, - STATE(424), 16, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - [36791] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2020), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(958), 1, - sym_identifier, - ACTIONS(2034), 1, - sym_number_literal, - STATE(386), 1, - sym_string_literal, - ACTIONS(31), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2036), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(665), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [36859] = 15, + anon_sym_DOT, + anon_sym_DASH_GT, + [13478] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(27), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(958), 1, - sym_identifier, - ACTIONS(2038), 1, - sym_number_literal, - STATE(386), 1, - sym_string_literal, - ACTIONS(31), 2, + ACTIONS(2026), 13, anon_sym_STAR, + anon_sym_EQ, anon_sym_AMP, - ACTIONS(69), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2040), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(556), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [36927] = 15, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2024), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LPAREN2, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [13528] = 15, ACTIONS(3), 1, sym_comment, + ACTIONS(27), 1, + anon_sym_LPAREN2, ACTIONS(75), 1, anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(2042), 1, - anon_sym_LPAREN2, - ACTIONS(2044), 1, + ACTIONS(2028), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, @@ -44516,23 +44718,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(2030), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2046), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(565), 11, + STATE(613), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -44544,7 +44752,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [36995] = 15, + [13602] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -44553,9 +44761,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1898), 1, + ACTIONS(2032), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, @@ -44569,23 +44777,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(2034), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1896), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(425), 11, + STATE(635), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -44597,7 +44811,54 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [37063] = 15, + [13676] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2038), 13, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2036), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LPAREN2, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [13726] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, @@ -44606,9 +44867,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(2012), 1, + ACTIONS(2040), 1, sym_number_literal, - STATE(386), 1, + STATE(380), 1, sym_string_literal, ACTIONS(31), 2, anon_sym_STAR, @@ -44622,23 +44883,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(79), 2, + ACTIONS(2042), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(81), 2, + ACTIONS(81), 5, anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2010), 3, - sym_true, - sym_false, - sym_null, - STATE(440), 5, + STATE(505), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(426), 11, + STATE(567), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -44650,58 +44917,285 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [37131] = 13, + [13800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(906), 1, + ACTIONS(2046), 13, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2044), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LPAREN2, - ACTIONS(920), 1, - anon_sym_sizeof, - ACTIONS(1790), 1, - sym_number_literal, - STATE(386), 1, - sym_string_literal, - ACTIONS(31), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [13850] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1232), 1, + anon_sym_EQ, + ACTIONS(1240), 1, + anon_sym_COLON, + ACTIONS(1236), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1238), 12, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(914), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(916), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(918), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1220), 15, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [13903] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1232), 1, + anon_sym_EQ, + ACTIONS(1234), 1, + anon_sym_COLON, + ACTIONS(1236), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1238), 12, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1220), 15, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [13956] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1232), 1, + anon_sym_EQ, + ACTIONS(1244), 1, + anon_sym_COLON, + ACTIONS(1236), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1238), 12, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1220), 15, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1786), 4, + anon_sym_DOT, + anon_sym_DASH_GT, + [14009] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1232), 1, + anon_sym_EQ, + ACTIONS(1242), 1, + anon_sym_COLON, + ACTIONS(1236), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1238), 12, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1220), 15, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [14062] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1812), 18, + anon_sym_if, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, sym_true, sym_false, sym_null, sym_identifier, - STATE(428), 16, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - [37195] = 16, + ACTIONS(1810), 20, + anon_sym_SEMI, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [14108] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(25), 1, @@ -44714,15 +45208,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(648), 1, sym_primitive_type, - ACTIONS(1226), 1, + ACTIONS(1256), 1, sym_identifier, ACTIONS(2048), 1, anon_sym_LBRACE, - STATE(707), 1, + STATE(712), 1, aux_sym_sized_type_specifier_repeat1, - STATE(782), 1, + STATE(785), 1, sym__declaration_specifiers, - STATE(171), 3, + STATE(312), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -44736,7 +45230,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(568), 4, + STATE(570), 4, sym_attribute_specifier, sym_storage_class_specifier, sym_type_qualifier, @@ -44754,7 +45248,7 @@ static uint16_t ts_small_parse_table[] = { sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [37264] = 16, + [14177] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(25), 1, @@ -44767,13 +45261,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(648), 1, sym_primitive_type, - ACTIONS(1226), 1, + ACTIONS(1256), 1, sym_identifier, ACTIONS(2050), 1, anon_sym_LBRACE, - STATE(707), 1, + STATE(712), 1, aux_sym_sized_type_specifier_repeat1, - STATE(781), 1, + STATE(790), 1, sym__declaration_specifiers, STATE(353), 3, sym_function_definition, @@ -44789,7 +45283,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(568), 4, + STATE(570), 4, sym_attribute_specifier, sym_storage_class_specifier, sym_type_qualifier, @@ -44807,7 +45301,7 @@ static uint16_t ts_small_parse_table[] = { sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [37333] = 16, + [14246] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(25), 1, @@ -44820,15 +45314,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(648), 1, sym_primitive_type, - ACTIONS(1226), 1, + ACTIONS(1256), 1, sym_identifier, ACTIONS(2052), 1, anon_sym_LBRACE, - STATE(707), 1, + STATE(712), 1, aux_sym_sized_type_specifier_repeat1, - STATE(790), 1, + STATE(788), 1, sym__declaration_specifiers, - STATE(298), 3, + STATE(172), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -44842,7 +45336,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(568), 4, + STATE(570), 4, sym_attribute_specifier, sym_storage_class_specifier, sym_type_qualifier, @@ -44860,7 +45354,7 @@ static uint16_t ts_small_parse_table[] = { sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [37402] = 16, + [14315] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(25), 1, @@ -44873,15 +45367,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(648), 1, sym_primitive_type, - ACTIONS(1226), 1, + ACTIONS(1256), 1, sym_identifier, ACTIONS(2054), 1, anon_sym_LBRACE, - STATE(707), 1, + STATE(712), 1, aux_sym_sized_type_specifier_repeat1, - STATE(785), 1, + STATE(780), 1, sym__declaration_specifiers, - STATE(299), 3, + STATE(315), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -44895,7 +45389,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(568), 4, + STATE(570), 4, sym_attribute_specifier, sym_storage_class_specifier, sym_type_qualifier, @@ -44913,7 +45407,7 @@ static uint16_t ts_small_parse_table[] = { sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [37471] = 17, + [14384] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(25), 1, @@ -44926,17 +45420,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(648), 1, sym_primitive_type, - ACTIONS(1226), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(1270), 1, + ACTIONS(1383), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1272), 1, + ACTIONS(1385), 1, anon_sym_RPAREN, - STATE(707), 1, + STATE(712), 1, aux_sym_sized_type_specifier_repeat1, STATE(756), 1, sym__declaration_specifiers, - STATE(910), 1, + STATE(931), 1, sym_parameter_declaration, ACTIONS(35), 4, anon_sym_const, @@ -44948,7 +45442,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(568), 4, + STATE(570), 4, sym_attribute_specifier, sym_storage_class_specifier, sym_type_qualifier, @@ -44966,7 +45460,7 @@ static uint16_t ts_small_parse_table[] = { sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [37541] = 16, + [14454] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(25), 1, @@ -44979,15 +45473,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(648), 1, sym_primitive_type, - ACTIONS(1226), 1, + ACTIONS(1256), 1, sym_identifier, ACTIONS(2056), 1, anon_sym_DOT_DOT_DOT, - STATE(707), 1, + STATE(712), 1, aux_sym_sized_type_specifier_repeat1, STATE(756), 1, sym__declaration_specifiers, - STATE(986), 1, + STATE(969), 1, sym_parameter_declaration, ACTIONS(35), 4, anon_sym_const, @@ -44999,7 +45493,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(568), 4, + STATE(570), 4, sym_attribute_specifier, sym_storage_class_specifier, sym_type_qualifier, @@ -45017,35 +45511,77 @@ static uint16_t ts_small_parse_table[] = { sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [37608] = 11, + [14521] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + STATE(555), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2062), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(2058), 7, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + ACTIONS(2060), 19, anon_sym_LPAREN2, - ACTIONS(1422), 1, + anon_sym_STAR, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [14565] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1662), 1, + anon_sym_LPAREN2, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1424), 4, + ACTIONS(2071), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1800), 4, anon_sym_AMP, anon_sym_PIPE, anon_sym_GT, anon_sym_LT, - ACTIONS(1416), 16, + ACTIONS(1798), 14, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -45060,40 +45596,89 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [37664] = 12, + [14623] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - STATE(441), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, + anon_sym_AMP, + ACTIONS(2077), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2079), 1, + anon_sym_AMP_AMP, + ACTIONS(2081), 1, + anon_sym_PIPE, + ACTIONS(2083), 1, + anon_sym_CARET, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1424), 4, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2087), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2089), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1814), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + [14697] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1662), 1, + anon_sym_LPAREN2, + ACTIONS(1666), 1, + anon_sym_LBRACK, + ACTIONS(2069), 1, + anon_sym_SLASH, + STATE(512), 1, + sym_argument_list, + ACTIONS(1686), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1688), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2065), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2067), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1668), 4, anon_sym_AMP, anon_sym_PIPE, anon_sym_GT, anon_sym_LT, - ACTIONS(1416), 14, + ACTIONS(1660), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -45108,52 +45693,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [37722] = 19, + anon_sym_LT_LT, + anon_sym_GT_GT, + [14753] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, - anon_sym_AMP, - ACTIONS(2068), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, - anon_sym_AMP_AMP, - ACTIONS(2072), 1, - anon_sym_PIPE, - ACTIONS(2074), 1, - anon_sym_CARET, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(1668), 4, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1448), 7, + ACTIONS(1660), 14, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -45161,42 +45734,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, - [37794] = 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [14811] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1424), 2, + ACTIONS(1668), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1416), 12, + ACTIONS(1660), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -45209,46 +45789,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [37856] = 16, + [14873] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(1424), 1, + ACTIONS(1668), 1, anon_sym_PIPE, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2075), 1, anon_sym_AMP, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1416), 10, + ACTIONS(1660), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -45259,48 +45839,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - [37922] = 17, + [14939] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(1424), 1, + ACTIONS(1668), 1, anon_sym_PIPE, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1416), 9, + ACTIONS(1660), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -45310,102 +45890,101 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [37990] = 20, + [15007] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, - anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1526), 6, + ACTIONS(1660), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_COLON, - [38064] = 17, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [15075] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2072), 1, + ACTIONS(2079), 1, + anon_sym_AMP_AMP, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1416), 9, + ACTIONS(1660), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -45414,51 +45993,89 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [38132] = 18, + [15145] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + STATE(512), 1, + sym_argument_list, + ACTIONS(1686), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1688), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2065), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1668), 6, anon_sym_AMP, - ACTIONS(2070), 1, - anon_sym_AMP_AMP, - ACTIONS(2072), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(2074), 1, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1660), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_CARET, - STATE(441), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [15199] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1662), 1, + anon_sym_LPAREN2, + ACTIONS(1666), 1, + anon_sym_LBRACK, + ACTIONS(2069), 1, + anon_sym_SLASH, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1668), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1416), 8, + ACTIONS(1660), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -45467,131 +46084,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_PIPE, - [38202] = 10, + anon_sym_AMP_AMP, + anon_sym_CARET, + [15263] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - STATE(441), 1, - sym_argument_list, - ACTIONS(1444), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2058), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1424), 6, + ACTIONS(2075), 1, anon_sym_AMP, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1416), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, + ACTIONS(2079), 1, anon_sym_AMP_AMP, + ACTIONS(2081), 1, + anon_sym_PIPE, + ACTIONS(2083), 1, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [38256] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1418), 1, - anon_sym_LPAREN2, - ACTIONS(1422), 1, - anon_sym_LBRACK, - ACTIONS(2062), 1, - anon_sym_SLASH, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1424), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1416), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [38320] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1418), 1, - anon_sym_LPAREN2, - ACTIONS(1422), 1, - anon_sym_LBRACK, - ACTIONS(2062), 1, - anon_sym_SLASH, - STATE(441), 1, - sym_argument_list, - ACTIONS(1444), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2058), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2060), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2064), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1542), 4, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1540), 14, + ACTIONS(1732), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -45599,72 +46139,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [38378] = 3, + [15335] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1514), 14, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1516), 18, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [38418] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2091), 1, + ACTIONS(2098), 1, anon_sym___attribute__, - ACTIONS(2094), 4, + ACTIONS(2101), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(567), 4, + STATE(568), 4, sym_attribute_specifier, sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(2088), 5, + ACTIONS(2095), 5, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - ACTIONS(2086), 7, + ACTIONS(2093), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -45672,7 +46168,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2084), 9, + ACTIONS(2091), 9, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -45682,7 +46178,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38464] = 13, + [15381] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2104), 11, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + ACTIONS(2106), 19, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [15419] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(25), 1, @@ -45693,11 +46224,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(45), 1, anon_sym_union, - ACTIONS(1226), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(2097), 1, + ACTIONS(2108), 1, sym_primitive_type, - STATE(707), 1, + STATE(712), 1, aux_sym_sized_type_specifier_repeat1, ACTIONS(35), 4, anon_sym_const, @@ -45709,7 +46240,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(567), 4, + STATE(568), 4, sym_attribute_specifier, sym_storage_class_specifier, sym_type_qualifier, @@ -45720,1958 +46251,1956 @@ static uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(728), 6, + STATE(725), 6, sym__type_specifier, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [38522] = 22, + [15477] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2099), 1, + ACTIONS(2110), 1, anon_sym_COMMA, - ACTIONS(2101), 1, + ACTIONS(2112), 1, anon_sym_RPAREN, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - STATE(903), 1, + STATE(921), 1, aux_sym_argument_list_repeat1, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [38597] = 21, + [15552] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2103), 1, + ACTIONS(2114), 1, anon_sym_COMMA, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2105), 2, + ACTIONS(2116), 2, anon_sym_RPAREN, anon_sym_SEMI, - [38670] = 22, + [15625] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2107), 1, + ACTIONS(2118), 1, anon_sym_COMMA, - ACTIONS(2109), 1, + ACTIONS(2120), 1, anon_sym_RBRACE, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - STATE(929), 1, + STATE(941), 1, aux_sym_initializer_list_repeat1, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [38745] = 21, + [15700] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2103), 1, + ACTIONS(2114), 1, anon_sym_COMMA, - ACTIONS(2111), 1, + ACTIONS(2122), 1, anon_sym_RPAREN, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [38817] = 21, + [15772] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2103), 1, + ACTIONS(2114), 1, anon_sym_COMMA, - ACTIONS(2113), 1, - anon_sym_RPAREN, - STATE(441), 1, + ACTIONS(2124), 1, + anon_sym_SEMI, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [38889] = 21, + [15844] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2103), 1, + ACTIONS(2114), 1, anon_sym_COMMA, - ACTIONS(2115), 1, + ACTIONS(2126), 1, anon_sym_RPAREN, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [38961] = 21, + [15916] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2103), 1, + ACTIONS(2114), 1, anon_sym_COMMA, - ACTIONS(2117), 1, - anon_sym_SEMI, - STATE(441), 1, + ACTIONS(2128), 1, + anon_sym_RPAREN, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [39033] = 21, + [15988] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2103), 1, + ACTIONS(2114), 1, anon_sym_COMMA, - ACTIONS(2119), 1, - anon_sym_SEMI, - STATE(441), 1, + ACTIONS(2130), 1, + anon_sym_RPAREN, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [39105] = 21, + [16060] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2103), 1, + ACTIONS(2114), 1, anon_sym_COMMA, - ACTIONS(2121), 1, - anon_sym_SEMI, - STATE(441), 1, + ACTIONS(2132), 1, + anon_sym_RPAREN, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [39177] = 21, + [16132] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2103), 1, + ACTIONS(2114), 1, anon_sym_COMMA, - ACTIONS(2123), 1, - anon_sym_SEMI, - STATE(441), 1, + ACTIONS(2134), 1, + anon_sym_RPAREN, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [39249] = 21, + [16204] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2103), 1, + ACTIONS(2114), 1, anon_sym_COMMA, - ACTIONS(2125), 1, + ACTIONS(2136), 1, anon_sym_RPAREN, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [39321] = 21, + [16276] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2103), 1, + ACTIONS(2114), 1, anon_sym_COMMA, - ACTIONS(2127), 1, + ACTIONS(2138), 1, anon_sym_RPAREN, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [39393] = 21, + [16348] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2103), 1, + ACTIONS(2114), 1, anon_sym_COMMA, - ACTIONS(2129), 1, + ACTIONS(2140), 1, anon_sym_RPAREN, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [39465] = 21, + [16420] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2103), 1, + ACTIONS(2114), 1, anon_sym_COMMA, - ACTIONS(2131), 1, + ACTIONS(2142), 1, anon_sym_RPAREN, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [39537] = 21, + [16492] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2103), 1, + ACTIONS(2114), 1, anon_sym_COMMA, - ACTIONS(2133), 1, + ACTIONS(2144), 1, anon_sym_RPAREN, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [39609] = 20, + [16564] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, - anon_sym_AMP, - ACTIONS(2068), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, - anon_sym_AMP_AMP, - ACTIONS(2072), 1, - anon_sym_PIPE, - ACTIONS(2074), 1, - anon_sym_CARET, - ACTIONS(2082), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - STATE(441), 1, - sym_argument_list, - ACTIONS(1444), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2058), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2060), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2064), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2076), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2078), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2080), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2135), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [39679] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1418), 1, - anon_sym_LPAREN2, - ACTIONS(1422), 1, - anon_sym_LBRACK, - ACTIONS(2062), 1, - anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2103), 1, + ACTIONS(2114), 1, anon_sym_COMMA, - ACTIONS(2137), 1, + ACTIONS(2146), 1, anon_sym_RPAREN, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [39751] = 21, + [16636] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2103), 1, + ACTIONS(2114), 1, anon_sym_COMMA, - ACTIONS(2139), 1, + ACTIONS(2148), 1, anon_sym_RPAREN, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [39823] = 21, + [16708] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2103), 1, - anon_sym_COMMA, - ACTIONS(2141), 1, - anon_sym_SEMI, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [39895] = 21, + ACTIONS(2150), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [16778] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2103), 1, + ACTIONS(2114), 1, anon_sym_COMMA, - ACTIONS(2143), 1, + ACTIONS(2152), 1, anon_sym_RPAREN, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [39967] = 21, + [16850] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2103), 1, + ACTIONS(2114), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2154), 1, anon_sym_RPAREN, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [40039] = 20, + [16922] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, + ACTIONS(2114), 1, + anon_sym_COMMA, + ACTIONS(2156), 1, + anon_sym_SEMI, + STATE(512), 1, + sym_argument_list, + ACTIONS(1686), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1688), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2065), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2067), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2071), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2087), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2089), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [16994] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1662), 1, + anon_sym_LPAREN2, + ACTIONS(1666), 1, + anon_sym_LBRACK, + ACTIONS(2069), 1, + anon_sym_SLASH, + ACTIONS(2073), 1, anon_sym_QMARK, - STATE(441), 1, + ACTIONS(2075), 1, + anon_sym_AMP, + ACTIONS(2077), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2079), 1, + anon_sym_AMP_AMP, + ACTIONS(2081), 1, + anon_sym_PIPE, + ACTIONS(2083), 1, + anon_sym_CARET, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2147), 2, + ACTIONS(2158), 2, anon_sym_COMMA, anon_sym_RBRACE, - [40109] = 21, + [17064] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2103), 1, + ACTIONS(2114), 1, anon_sym_COMMA, - ACTIONS(2149), 1, + ACTIONS(2160), 1, anon_sym_RPAREN, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [40181] = 21, + [17136] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2103), 1, + ACTIONS(2114), 1, anon_sym_COMMA, - ACTIONS(2151), 1, + ACTIONS(2162), 1, anon_sym_SEMI, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [40253] = 21, + [17208] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2103), 1, + ACTIONS(2114), 1, anon_sym_COMMA, - ACTIONS(2153), 1, + ACTIONS(2164), 1, anon_sym_SEMI, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [40325] = 21, + [17280] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2103), 1, + ACTIONS(2114), 1, anon_sym_COMMA, - ACTIONS(2155), 1, + ACTIONS(2166), 1, anon_sym_RPAREN, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [40397] = 21, + [17352] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2103), 1, + ACTIONS(2114), 1, anon_sym_COMMA, - ACTIONS(2157), 1, - anon_sym_RPAREN, - STATE(441), 1, + ACTIONS(2168), 1, + anon_sym_SEMI, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [40469] = 21, + [17424] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2103), 1, + ACTIONS(2114), 1, anon_sym_COMMA, - ACTIONS(2159), 1, + ACTIONS(2170), 1, anon_sym_RPAREN, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [40541] = 21, + [17496] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2103), 1, + ACTIONS(2114), 1, anon_sym_COMMA, - ACTIONS(2161), 1, - anon_sym_RPAREN, - STATE(441), 1, + ACTIONS(2172), 1, + anon_sym_SEMI, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [40613] = 21, + [17568] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2103), 1, + ACTIONS(2114), 1, anon_sym_COMMA, - ACTIONS(2163), 1, - anon_sym_SEMI, - STATE(441), 1, + ACTIONS(2174), 1, + anon_sym_RPAREN, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [40685] = 21, + [17640] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2103), 1, + ACTIONS(2114), 1, anon_sym_COMMA, - ACTIONS(2165), 1, + ACTIONS(2176), 1, anon_sym_RPAREN, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [40757] = 21, + [17712] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2103), 1, + ACTIONS(2114), 1, anon_sym_COMMA, - ACTIONS(2167), 1, - anon_sym_RPAREN, - STATE(441), 1, + ACTIONS(2178), 1, + anon_sym_SEMI, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [40829] = 21, + [17784] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2103), 1, + ACTIONS(2114), 1, anon_sym_COMMA, - ACTIONS(2169), 1, + ACTIONS(2180), 1, anon_sym_RPAREN, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [40901] = 21, + [17856] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2103), 1, - anon_sym_COMMA, - ACTIONS(2171), 1, - anon_sym_RPAREN, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [40973] = 21, + ACTIONS(2182), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [17926] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2103), 1, + ACTIONS(2114), 1, anon_sym_COMMA, - ACTIONS(2173), 1, - anon_sym_RPAREN, - STATE(441), 1, + ACTIONS(2184), 1, + anon_sym_SEMI, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [41045] = 21, + [17998] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2103), 1, + ACTIONS(2114), 1, anon_sym_COMMA, - ACTIONS(2175), 1, - anon_sym_SEMI, - STATE(441), 1, + ACTIONS(2186), 1, + anon_sym_RPAREN, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [41117] = 21, + [18070] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2103), 1, + ACTIONS(2114), 1, anon_sym_COMMA, - ACTIONS(2177), 1, + ACTIONS(2188), 1, anon_sym_SEMI, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [41189] = 21, + [18142] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2103), 1, - anon_sym_COMMA, - ACTIONS(2179), 1, - anon_sym_RPAREN, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [41261] = 3, + ACTIONS(2190), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [18212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2183), 9, + ACTIONS(2194), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -47681,7 +48210,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, - ACTIONS(2181), 19, + ACTIONS(2192), 19, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -47701,544 +48230,515 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [41297] = 20, + [18248] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - STATE(441), 1, + ACTIONS(2114), 1, + anon_sym_COMMA, + ACTIONS(2196), 1, + anon_sym_RPAREN, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2185), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [41367] = 21, + [18320] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2103), 1, + ACTIONS(2114), 1, anon_sym_COMMA, - ACTIONS(2187), 1, + ACTIONS(2198), 1, anon_sym_RPAREN, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [41439] = 21, + [18392] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2103), 1, + ACTIONS(2114), 1, anon_sym_COMMA, - ACTIONS(2189), 1, + ACTIONS(2200), 1, anon_sym_RPAREN, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [41511] = 20, + [18464] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2191), 2, + ACTIONS(2202), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [41581] = 20, + anon_sym_RPAREN, + [18534] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - STATE(441), 1, + ACTIONS(2114), 1, + anon_sym_COMMA, + ACTIONS(2204), 1, + anon_sym_RPAREN, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2193), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [41651] = 21, + [18606] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2103), 1, + ACTIONS(2114), 1, anon_sym_COMMA, - ACTIONS(2195), 1, - anon_sym_RPAREN, - STATE(441), 1, + ACTIONS(2206), 1, + anon_sym_SEMI, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [41723] = 21, + [18678] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2103), 1, + ACTIONS(2114), 1, anon_sym_COMMA, - ACTIONS(2197), 1, + ACTIONS(2208), 1, anon_sym_SEMI, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [41795] = 21, + [18750] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2103), 1, + ACTIONS(2114), 1, anon_sym_COMMA, - ACTIONS(2199), 1, + ACTIONS(2210), 1, anon_sym_SEMI, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [41867] = 20, + [18822] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2201), 1, + ACTIONS(2212), 1, anon_sym_SEMI, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [41936] = 2, + [18891] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1094), 27, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [41969] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2203), 1, - anon_sym_COLON, - STATE(441), 1, + ACTIONS(2214), 1, + anon_sym_SEMI, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [42038] = 2, + [18960] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2205), 27, + ACTIONS(2216), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -48266,10 +48766,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [42071] = 2, + [18993] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2207), 27, + ACTIONS(2218), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -48297,10 +48797,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [42104] = 2, + [19026] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2209), 27, + ACTIONS(2220), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -48328,10 +48828,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [42137] = 2, + [19059] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2211), 27, + ACTIONS(2222), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -48359,10 +48859,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [42170] = 2, + [19092] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2213), 27, + ACTIONS(2224), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -48390,10 +48890,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [42203] = 2, + [19125] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2215), 27, + ACTIONS(2226), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -48421,10 +48921,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [42236] = 2, + [19158] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2217), 27, + ACTIONS(2228), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -48452,10 +48952,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [42269] = 2, + [19191] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 27, + ACTIONS(2230), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -48483,10 +48983,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [42302] = 2, + [19224] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2221), 27, + ACTIONS(2232), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -48514,10 +49014,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [42335] = 2, + [19257] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2223), 27, + ACTIONS(2234), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -48545,41 +49045,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [42368] = 2, + [19290] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2225), 27, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [42401] = 2, + ACTIONS(1662), 1, + anon_sym_LPAREN2, + ACTIONS(1666), 1, + anon_sym_LBRACK, + ACTIONS(2069), 1, + anon_sym_SLASH, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, + anon_sym_AMP, + ACTIONS(2077), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2079), 1, + anon_sym_AMP_AMP, + ACTIONS(2081), 1, + anon_sym_PIPE, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2236), 1, + anon_sym_COLON, + STATE(512), 1, + sym_argument_list, + ACTIONS(1686), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1688), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2065), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2067), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2071), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2087), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2089), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [19359] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2227), 27, + ACTIONS(2238), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -48607,10 +49125,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [42434] = 2, + [19392] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2229), 27, + ACTIONS(2240), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -48638,990 +49156,1003 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [42467] = 20, + [19425] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(1782), 1, + anon_sym_RBRACK, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2231), 1, - anon_sym_COLON, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [42536] = 20, + [19494] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2233), 1, - anon_sym_SEMI, - STATE(441), 1, + ACTIONS(2242), 1, + anon_sym_RBRACK, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [42605] = 20, + [19563] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(1886), 1, - anon_sym_RBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - STATE(441), 1, + ACTIONS(2244), 1, + anon_sym_COLON, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [42674] = 20, + [19632] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(1884), 1, + ACTIONS(1802), 1, anon_sym_RBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [42743] = 20, + [19701] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(1804), 1, + anon_sym_RBRACK, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2235), 1, - anon_sym_SEMI, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [42812] = 20, + [19770] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(1798), 1, + ACTIONS(1838), 1, anon_sym_RBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [42881] = 20, + [19839] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(1788), 1, - anon_sym_RBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - STATE(441), 1, + ACTIONS(2246), 1, + anon_sym_COLON, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [42950] = 20, + [19908] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(1812), 1, + ACTIONS(1836), 1, anon_sym_RBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [43019] = 20, + [19977] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2248), 1, anon_sym_COLON, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [43088] = 20, + [20046] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(1830), 1, + ACTIONS(1696), 1, anon_sym_RBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [43157] = 20, + [20115] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(1808), 1, - anon_sym_RBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - STATE(441), 1, + ACTIONS(2250), 1, + anon_sym_SEMI, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [43226] = 20, + [20184] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(2252), 27, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [20217] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(1810), 1, - anon_sym_RBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - STATE(441), 1, + ACTIONS(2254), 1, + anon_sym_SEMI, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [43295] = 20, + [20286] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(1784), 1, + anon_sym_RBRACK, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2239), 1, - anon_sym_SEMI, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [43364] = 20, + [20355] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2241), 1, + ACTIONS(2256), 1, anon_sym_COLON, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [43433] = 20, + [20424] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(1792), 1, + anon_sym_RBRACK, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2243), 1, - anon_sym_SEMI, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [43502] = 20, + [20493] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2245), 1, + ACTIONS(2258), 1, anon_sym_SEMI, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [43571] = 20, + [20562] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2260), 1, anon_sym_SEMI, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [43640] = 20, + [20631] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2249), 1, - anon_sym_RBRACK, - STATE(441), 1, + ACTIONS(2262), 1, + anon_sym_SEMI, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [43709] = 20, + [20700] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(1894), 1, - anon_sym_RBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - STATE(441), 1, + ACTIONS(2264), 1, + anon_sym_COLON, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [43778] = 20, + [20769] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, - anon_sym_LPAREN2, - ACTIONS(1422), 1, - anon_sym_LBRACK, - ACTIONS(2062), 1, - anon_sym_SLASH, - ACTIONS(2066), 1, - anon_sym_AMP, - ACTIONS(2068), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, - anon_sym_AMP_AMP, - ACTIONS(2072), 1, - anon_sym_PIPE, - ACTIONS(2074), 1, - anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2251), 1, - anon_sym_RBRACK, - STATE(441), 1, - sym_argument_list, - ACTIONS(1444), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2058), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2060), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2064), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2076), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2078), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2080), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [43847] = 2, + ACTIONS(1170), 27, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [20802] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1158), 27, + ACTIONS(1122), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -49649,10 +50180,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [43880] = 2, + [20835] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1162), 27, + ACTIONS(1106), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -49680,304 +50211,451 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [43913] = 20, + [20868] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(1840), 1, + anon_sym_RBRACK, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, + STATE(512), 1, + sym_argument_list, + ACTIONS(1686), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1688), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2065), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2067), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2071), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2087), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2089), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [20937] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1662), 1, + anon_sym_LPAREN2, + ACTIONS(1666), 1, + anon_sym_LBRACK, + ACTIONS(2069), 1, + anon_sym_SLASH, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, + anon_sym_AMP, + ACTIONS(2077), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2079), 1, + anon_sym_AMP_AMP, + ACTIONS(2081), 1, + anon_sym_PIPE, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2266), 1, + anon_sym_RBRACK, + STATE(512), 1, + sym_argument_list, + ACTIONS(1686), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1688), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2065), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2067), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2071), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2087), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2089), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [21006] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1662), 1, + anon_sym_LPAREN2, + ACTIONS(1666), 1, + anon_sym_LBRACK, + ACTIONS(2069), 1, + anon_sym_SLASH, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2253), 1, + ACTIONS(2075), 1, + anon_sym_AMP, + ACTIONS(2077), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2079), 1, + anon_sym_AMP_AMP, + ACTIONS(2081), 1, + anon_sym_PIPE, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2268), 1, + anon_sym_SEMI, + STATE(512), 1, + sym_argument_list, + ACTIONS(1686), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1688), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2065), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2067), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2071), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2087), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2089), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [21075] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1662), 1, + anon_sym_LPAREN2, + ACTIONS(1666), 1, + anon_sym_LBRACK, + ACTIONS(2069), 1, + anon_sym_SLASH, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, + anon_sym_AMP, + ACTIONS(2077), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2079), 1, + anon_sym_AMP_AMP, + ACTIONS(2081), 1, + anon_sym_PIPE, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2270), 1, anon_sym_SEMI, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [43982] = 20, + [21144] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(1744), 1, + anon_sym_RBRACK, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2255), 1, - anon_sym_SEMI, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [44051] = 20, + [21213] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2257), 1, + ACTIONS(2272), 1, anon_sym_SEMI, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [44120] = 20, + [21282] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(1806), 1, - anon_sym_RBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - STATE(441), 1, + ACTIONS(2274), 1, + anon_sym_SEMI, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [44189] = 20, + [21351] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2259), 1, + ACTIONS(2276), 1, anon_sym_SEMI, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [44258] = 20, + [21420] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1662), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, + ACTIONS(1666), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2069), 1, anon_sym_SLASH, - ACTIONS(2066), 1, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2075), 1, anon_sym_AMP, - ACTIONS(2068), 1, + ACTIONS(2077), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - ACTIONS(2072), 1, + ACTIONS(2081), 1, anon_sym_PIPE, - ACTIONS(2074), 1, + ACTIONS(2083), 1, anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2261), 1, + ACTIONS(2278), 1, anon_sym_SEMI, - STATE(441), 1, + STATE(512), 1, sym_argument_list, - ACTIONS(1444), 2, + ACTIONS(1686), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, + ACTIONS(1688), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2058), 2, + ACTIONS(2065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2060), 2, + ACTIONS(2067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2064), 2, + ACTIONS(2071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2076), 2, + ACTIONS(2085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2078), 2, + ACTIONS(2087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2080), 2, + ACTIONS(2089), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [44327] = 2, + [21489] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1122), 27, + ACTIONS(1142), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -50005,10 +50683,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [44360] = 2, + [21522] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1110), 27, + ACTIONS(1166), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -50036,10 +50714,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [44393] = 2, + [21555] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1114), 27, + ACTIONS(1174), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -50067,190 +50745,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [44426] = 20, + [21588] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, - anon_sym_LPAREN2, - ACTIONS(1422), 1, - anon_sym_LBRACK, - ACTIONS(2062), 1, - anon_sym_SLASH, - ACTIONS(2066), 1, - anon_sym_AMP, - ACTIONS(2068), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, - anon_sym_AMP_AMP, - ACTIONS(2072), 1, - anon_sym_PIPE, - ACTIONS(2074), 1, - anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2263), 1, + ACTIONS(2106), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(441), 1, - sym_argument_list, - ACTIONS(1444), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2058), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2060), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2064), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2076), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2078), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2080), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [44495] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1418), 1, anon_sym_LPAREN2, - ACTIONS(1422), 1, - anon_sym_LBRACK, - ACTIONS(2062), 1, - anon_sym_SLASH, - ACTIONS(2066), 1, - anon_sym_AMP, - ACTIONS(2068), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, - anon_sym_AMP_AMP, - ACTIONS(2072), 1, - anon_sym_PIPE, - ACTIONS(2074), 1, - anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2265), 1, - anon_sym_COLON, - STATE(441), 1, - sym_argument_list, - ACTIONS(1444), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2058), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2060), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2064), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2076), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2078), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2080), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [44564] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1418), 1, - anon_sym_LPAREN2, - ACTIONS(1422), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, - anon_sym_SLASH, - ACTIONS(2066), 1, - anon_sym_AMP, - ACTIONS(2068), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2070), 1, - anon_sym_AMP_AMP, - ACTIONS(2072), 1, - anon_sym_PIPE, - ACTIONS(2074), 1, - anon_sym_CARET, - ACTIONS(2082), 1, - anon_sym_QMARK, - ACTIONS(2267), 1, anon_sym_COLON, - STATE(441), 1, - sym_argument_list, - ACTIONS(1444), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1446), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2058), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2060), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2064), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2076), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2078), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2080), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [44633] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(666), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2273), 4, + ACTIONS(2104), 19, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(2269), 7, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - ACTIONS(2271), 13, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - [44671] = 3, + [21622] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2278), 7, + ACTIONS(2282), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -50258,7 +50787,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2276), 19, + ACTIONS(2280), 19, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -50278,18 +50807,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [44705] = 3, + [21656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2280), 19, + ACTIONS(2284), 1, + anon_sym_RBRACE, + ACTIONS(2234), 24, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -50309,12 +50837,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [44739] = 3, + [21689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2284), 1, + ACTIONS(2286), 1, anon_sym_RBRACE, - ACTIONS(2219), 24, + ACTIONS(2226), 24, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -50339,13 +50867,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [44772] = 2, + [21722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2213), 25, + ACTIONS(2288), 1, + anon_sym_RBRACE, + ACTIONS(2218), 24, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -50368,12 +50897,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [44803] = 3, + [21755] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2286), 1, + STATE(551), 1, + sym_string_literal, + ACTIONS(2290), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2280), 19, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [21790] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1144), 1, anon_sym_RBRACE, - ACTIONS(2221), 24, + ACTIONS(1142), 24, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -50398,12 +50958,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [44836] = 3, + [21823] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1112), 1, + ACTIONS(2292), 1, anon_sym_RBRACE, - ACTIONS(1110), 24, + ACTIONS(2220), 24, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -50428,12 +50988,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [44869] = 3, + [21856] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1116), 1, + ACTIONS(1122), 25, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [21887] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2294), 1, anon_sym_RBRACE, - ACTIONS(1114), 24, + ACTIONS(2232), 24, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -50458,10 +51047,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [44902] = 2, + [21920] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(550), 1, + sym_string_literal, + ACTIONS(2290), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2280), 19, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [21955] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1158), 25, + ACTIONS(1106), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -50487,10 +51107,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [44933] = 2, + [21986] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2205), 25, + ACTIONS(2238), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -50516,14 +51136,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [44964] = 3, + [22017] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2288), 1, - anon_sym_RBRACE, - ACTIONS(2225), 24, + ACTIONS(2240), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -50546,14 +51165,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [44997] = 3, + [22048] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2290), 1, - anon_sym_RBRACE, - ACTIONS(2227), 24, + ACTIONS(2252), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -50576,14 +51194,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [45030] = 3, + [22079] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2292), 1, - anon_sym_RBRACE, - ACTIONS(2207), 24, + ACTIONS(2216), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -50606,13 +51223,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [45063] = 2, + [22110] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1094), 25, + ACTIONS(1176), 1, + anon_sym_RBRACE, + ACTIONS(1174), 24, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -50635,10 +51253,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [45094] = 2, + [22143] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2207), 25, + ACTIONS(1166), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -50664,10 +51282,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [45125] = 2, + [22174] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2209), 25, + ACTIONS(1174), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -50693,13 +51311,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [45156] = 2, + [22205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2211), 25, + ACTIONS(1168), 1, + anon_sym_RBRACE, + ACTIONS(1166), 24, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -50722,10 +51341,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [45187] = 2, + [22238] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2229), 25, + ACTIONS(1142), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -50751,10 +51370,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [45218] = 2, + [22269] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1114), 25, + ACTIONS(2218), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -50780,10 +51399,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [45249] = 2, + [22300] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1110), 25, + ACTIONS(2226), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -50809,14 +51428,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [45280] = 3, + [22331] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2294), 1, - anon_sym_RBRACE, - ACTIONS(2205), 24, + ACTIONS(2228), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -50839,14 +51457,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [45313] = 3, + [22362] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2296), 1, - anon_sym_RBRACE, - ACTIONS(2209), 24, + ACTIONS(2230), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -50869,10 +51486,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [45346] = 2, + [22393] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1162), 25, + ACTIONS(2232), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -50898,16 +51515,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [45377] = 2, + [22424] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 25, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + STATE(552), 1, + sym_string_literal, + ACTIONS(2290), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2280), 19, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -50927,13 +51546,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [45408] = 2, + [22459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2221), 25, + ACTIONS(1108), 1, + anon_sym_RBRACE, + ACTIONS(1106), 24, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -50956,13 +51576,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [45439] = 2, + [22492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2223), 25, + ACTIONS(1124), 1, + anon_sym_RBRACE, + ACTIONS(1122), 24, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -50985,13 +51606,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [45470] = 2, + [22525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2225), 25, + ACTIONS(2296), 1, + anon_sym_RBRACE, + ACTIONS(2224), 24, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -51014,13 +51636,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [45501] = 2, + [22558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2227), 25, + ACTIONS(2298), 1, + anon_sym_RBRACE, + ACTIONS(2238), 24, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -51043,12 +51666,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [45532] = 3, + [22591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1096), 1, + ACTIONS(2300), 1, anon_sym_RBRACE, - ACTIONS(1094), 24, + ACTIONS(2240), 24, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -51073,12 +51696,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [45565] = 3, + [22624] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2298), 1, + ACTIONS(1172), 1, anon_sym_RBRACE, - ACTIONS(2211), 24, + ACTIONS(1170), 24, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -51103,14 +51726,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [45598] = 3, + [22657] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, - anon_sym_RBRACE, - ACTIONS(2229), 24, + ACTIONS(2220), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -51133,14 +51755,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [45631] = 3, + [22688] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2302), 1, - anon_sym_RBRACE, - ACTIONS(2213), 24, + ACTIONS(2222), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -51163,14 +51784,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [45664] = 3, + [22719] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2304), 1, - anon_sym_RBRACE, - ACTIONS(2215), 24, + ACTIONS(2224), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -51193,13 +51813,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [45697] = 2, + [22750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1122), 25, + ACTIONS(2302), 1, + anon_sym_RBRACE, + ACTIONS(2222), 24, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -51222,12 +51843,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [45728] = 3, + [22783] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1160), 1, + ACTIONS(2304), 1, anon_sym_RBRACE, - ACTIONS(1158), 24, + ACTIONS(2252), 24, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -51252,12 +51873,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [45761] = 3, + [22816] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2306), 1, anon_sym_RBRACE, - ACTIONS(2223), 24, + ACTIONS(2216), 24, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -51282,10 +51903,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [45794] = 2, + [22849] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2215), 25, + ACTIONS(1170), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -51311,13 +51932,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [45825] = 2, + [22880] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2217), 25, + ACTIONS(2308), 1, + anon_sym_RBRACE, + ACTIONS(2230), 24, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -51340,14 +51962,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [45856] = 3, + [22913] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1124), 1, - anon_sym_RBRACE, - ACTIONS(1122), 24, + ACTIONS(2234), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -51370,17 +51991,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [45889] = 3, + [22944] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2308), 1, - anon_sym_RBRACE, - ACTIONS(2217), 24, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + STATE(549), 1, + sym_string_literal, + ACTIONS(2290), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2280), 19, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -51400,12 +52022,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [45922] = 3, + [22979] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1164), 1, + ACTIONS(2310), 1, anon_sym_RBRACE, - ACTIONS(1162), 24, + ACTIONS(2228), 24, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -51430,21 +52052,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [45955] = 7, + [23012] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2310), 1, + ACTIONS(2312), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2321), 1, sym_primitive_type, - STATE(709), 1, + STATE(713), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2317), 4, + ACTIONS(2319), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2313), 7, + ACTIONS(2315), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -51452,7 +52074,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2315), 10, + ACTIONS(2317), 10, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -51463,46 +52085,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - [45995] = 3, + [23052] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 11, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - ACTIONS(2282), 13, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - [46027] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(709), 1, + STATE(713), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2325), 4, + ACTIONS(2327), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2323), 7, + ACTIONS(2325), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -51510,7 +52103,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2321), 12, + ACTIONS(2323), 12, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -51523,60 +52116,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym__Atomic, sym_primitive_type, sym_identifier, - [46063] = 12, + [23088] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_enum, - ACTIONS(43), 1, - anon_sym_struct, - ACTIONS(45), 1, - anon_sym_union, - ACTIONS(1186), 1, - sym_primitive_type, - ACTIONS(1226), 1, - sym_identifier, - STATE(764), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1121), 1, - sym_type_descriptor, - STATE(715), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(35), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(1184), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(760), 6, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - [46112] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 1, + ACTIONS(1387), 1, anon_sym_LPAREN2, - ACTIONS(1276), 1, + ACTIONS(1389), 1, anon_sym_STAR, - ACTIONS(1278), 1, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(2328), 1, + ACTIONS(2330), 1, sym_identifier, - STATE(900), 1, + STATE(892), 1, sym_parameter_list, - ACTIONS(2330), 2, + ACTIONS(2332), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(734), 2, + STATE(730), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(35), 4, @@ -51584,35 +52140,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(798), 5, + STATE(806), 5, sym__declarator, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - STATE(852), 5, + STATE(848), 5, sym__abstract_declarator, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - [46159] = 11, + [23135] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 1, + ACTIONS(1387), 1, anon_sym_LPAREN2, - ACTIONS(1276), 1, + ACTIONS(1389), 1, anon_sym_STAR, - ACTIONS(1278), 1, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(2332), 1, + ACTIONS(2334), 1, sym_identifier, - STATE(900), 1, + STATE(892), 1, sym_parameter_list, - ACTIONS(2334), 2, + ACTIONS(2336), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(711), 2, + STATE(714), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(35), 4, @@ -51620,19 +52176,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(794), 5, + STATE(795), 5, sym__declarator, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - STATE(854), 5, + STATE(858), 5, sym__abstract_declarator, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - [46206] = 11, + [23182] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -51641,13 +52197,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(45), 1, anon_sym_union, - ACTIONS(1226), 1, - sym_identifier, - ACTIONS(2336), 1, + ACTIONS(1186), 1, sym_primitive_type, - STATE(707), 1, + ACTIONS(1256), 1, + sym_identifier, + STATE(764), 1, aux_sym_sized_type_specifier_repeat1, - STATE(718), 2, + STATE(1084), 1, + sym_type_descriptor, + STATE(721), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(35), 4, @@ -51655,47 +52213,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(37), 4, + ACTIONS(1184), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(803), 6, + STATE(761), 6, sym__type_specifier, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [46252] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(551), 1, - sym_string_literal, - ACTIONS(2338), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2276), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [46284] = 11, + [23231] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -51704,13 +52234,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(45), 1, anon_sym_union, - ACTIONS(1226), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(2340), 1, + ACTIONS(2338), 1, sym_primitive_type, - STATE(764), 1, + STATE(712), 1, aux_sym_sized_type_specifier_repeat1, - STATE(734), 2, + STATE(724), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(35), 4, @@ -51718,47 +52248,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(1184), 4, + ACTIONS(37), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(762), 6, + STATE(807), 6, sym__type_specifier, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [46330] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(550), 1, - sym_string_literal, - ACTIONS(2338), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2276), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [46362] = 11, + [23277] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -51767,13 +52269,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(45), 1, anon_sym_union, - ACTIONS(1226), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(2342), 1, + ACTIONS(2340), 1, sym_primitive_type, - STATE(707), 1, + STATE(712), 1, aux_sym_sized_type_specifier_repeat1, - STATE(734), 2, + STATE(730), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(35), 4, @@ -51786,14 +52288,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(807), 6, + STATE(798), 6, sym__type_specifier, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [46408] = 11, + [23323] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -51802,13 +52304,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(45), 1, anon_sym_union, - ACTIONS(1226), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(2344), 1, + ACTIONS(2342), 1, sym_primitive_type, - STATE(707), 1, + STATE(712), 1, aux_sym_sized_type_specifier_repeat1, - STATE(734), 2, + STATE(730), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(35), 4, @@ -51821,14 +52323,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(799), 6, + STATE(797), 6, sym__type_specifier, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [46454] = 11, + [23369] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -51837,13 +52339,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(45), 1, anon_sym_union, - ACTIONS(1226), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(2346), 1, + ACTIONS(2344), 1, sym_primitive_type, - STATE(707), 1, + STATE(712), 1, aux_sym_sized_type_specifier_repeat1, - STATE(734), 2, + STATE(718), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(35), 4, @@ -51856,14 +52358,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(796), 6, + STATE(801), 6, sym__type_specifier, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [46500] = 11, + [23415] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -51872,13 +52374,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(45), 1, anon_sym_union, - ACTIONS(1226), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(2348), 1, + ACTIONS(2346), 1, sym_primitive_type, - STATE(707), 1, + STATE(764), 1, aux_sym_sized_type_specifier_repeat1, - STATE(717), 2, + STATE(730), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(35), 4, @@ -51886,19 +52388,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(37), 4, + ACTIONS(1184), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(810), 6, + STATE(757), 6, sym__type_specifier, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [46546] = 11, + [23461] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -51907,11 +52409,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(45), 1, anon_sym_union, - ACTIONS(1226), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(2350), 1, + ACTIONS(2348), 1, sym_primitive_type, - STATE(707), 1, + STATE(712), 1, aux_sym_sized_type_specifier_repeat1, STATE(719), 2, sym_type_qualifier, @@ -51926,26 +52428,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(795), 6, + STATE(802), 6, sym__type_specifier, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [46592] = 7, + [23507] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(25), 1, anon_sym___attribute__, - ACTIONS(2352), 1, + ACTIONS(2350), 1, sym_identifier, ACTIONS(35), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(567), 4, + STATE(728), 4, sym_attribute_specifier, sym_storage_class_specifier, sym_type_qualifier, @@ -51956,7 +52458,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - ACTIONS(2354), 7, + ACTIONS(2352), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -51964,7 +52466,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - [46630] = 7, + [23545] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_enum, + ACTIONS(43), 1, + anon_sym_struct, + ACTIONS(45), 1, + anon_sym_union, + ACTIONS(1256), 1, + sym_identifier, + ACTIONS(2354), 1, + sym_primitive_type, + STATE(712), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(730), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(35), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(37), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(805), 6, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + [23591] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(25), 1, @@ -51976,7 +52513,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(729), 4, + STATE(727), 4, sym_attribute_specifier, sym_storage_class_specifier, sym_type_qualifier, @@ -51995,35 +52532,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - [46668] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(549), 1, - sym_string_literal, - ACTIONS(2338), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2276), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [46700] = 11, + [23629] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -52032,13 +52541,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(45), 1, anon_sym_union, - ACTIONS(1226), 1, + ACTIONS(1256), 1, sym_identifier, ACTIONS(2360), 1, sym_primitive_type, - STATE(707), 1, + STATE(712), 1, aux_sym_sized_type_specifier_repeat1, - STATE(726), 2, + STATE(729), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(35), 4, @@ -52051,89 +52560,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(797), 6, + STATE(794), 6, sym__type_specifier, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [46746] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym_enum, - ACTIONS(43), 1, - anon_sym_struct, - ACTIONS(45), 1, - anon_sym_union, - ACTIONS(1226), 1, - sym_identifier, - ACTIONS(2362), 1, - sym_primitive_type, - STATE(707), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(734), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(35), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(37), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(808), 6, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - [46792] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(548), 1, - sym_string_literal, - ACTIONS(2338), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2276), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [46824] = 7, + [23675] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(25), 1, anon_sym___attribute__, - ACTIONS(2364), 1, + ACTIONS(2362), 1, sym_identifier, ACTIONS(35), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(722), 4, + STATE(568), 4, sym_attribute_specifier, sym_storage_class_specifier, sym_type_qualifier, @@ -52144,7 +52590,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - ACTIONS(2366), 7, + ACTIONS(2364), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -52152,19 +52598,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - [46862] = 7, + [23713] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(25), 1, anon_sym___attribute__, - ACTIONS(2368), 1, + ACTIONS(2366), 1, sym_identifier, ACTIONS(35), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(567), 4, + STATE(568), 4, sym_attribute_specifier, sym_storage_class_specifier, sym_type_qualifier, @@ -52175,7 +52621,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - ACTIONS(2370), 7, + ACTIONS(2368), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -52183,22 +52629,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - [46900] = 5, + [23751] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2376), 1, - anon_sym_LBRACE, - STATE(751), 1, - sym_field_declaration_list, - ACTIONS(2374), 7, + ACTIONS(41), 1, + anon_sym_enum, + ACTIONS(43), 1, + anon_sym_struct, + ACTIONS(45), 1, + anon_sym_union, + ACTIONS(1256), 1, + sym_identifier, + ACTIONS(2370), 1, + sym_primitive_type, + STATE(712), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(730), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(35), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(37), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(809), 6, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + [23797] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(730), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2372), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(2060), 5, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2372), 11, + ACTIONS(2058), 9, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [23829] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1156), 1, + anon_sym_LBRACE, + ACTIONS(1154), 19, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -52209,15 +52707,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [46932] = 5, + [23857] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2382), 1, + ACTIONS(2379), 1, anon_sym_LBRACE, - STATE(746), 1, - sym_enumerator_list, - ACTIONS(2380), 7, + STATE(737), 1, + sym_field_declaration_list, + ACTIONS(2377), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -52225,7 +52731,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2378), 11, + ACTIONS(2375), 11, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -52237,12 +52743,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [46964] = 3, + [23889] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1168), 1, + ACTIONS(2385), 1, anon_sym_LBRACE, - ACTIONS(1166), 19, + STATE(748), 1, + sym_enumerator_list, + ACTIONS(2383), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2381), 11, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -52253,21 +52769,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [46992] = 3, + [23921] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1132), 1, + ACTIONS(2379), 1, anon_sym_LBRACE, - ACTIONS(1130), 19, + STATE(738), 1, + sym_field_declaration_list, + ACTIONS(2389), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2387), 11, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -52278,33 +52796,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [47020] = 5, + [23953] = 3, ACTIONS(3), 1, sym_comment, - STATE(734), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2384), 4, + ACTIONS(1100), 1, + anon_sym_LBRACE, + ACTIONS(1098), 19, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(2271), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - ACTIONS(2269), 9, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -52314,14 +52822,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [47052] = 5, + [23981] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2376), 1, - anon_sym_LBRACE, - STATE(754), 1, - sym_field_declaration_list, - ACTIONS(2389), 7, + ACTIONS(2393), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -52329,7 +52833,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2387), 11, + ACTIONS(2391), 11, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -52341,10 +52845,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [47084] = 3, + [24007] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2393), 7, + ACTIONS(2397), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -52352,7 +52856,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2391), 11, + ACTIONS(2395), 11, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -52364,10 +52868,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [47110] = 3, + [24033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 7, + ACTIONS(2401), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -52375,7 +52879,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2395), 11, + ACTIONS(2399), 11, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -52387,19 +52891,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [47136] = 4, + [24059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2399), 1, - anon_sym_LPAREN2, - ACTIONS(1576), 6, + ACTIONS(2405), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(1198), 11, + ACTIONS(2403), 11, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -52411,38 +52914,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [47164] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(25), 1, - anon_sym___attribute__, - ACTIONS(2356), 1, - sym_identifier, - ACTIONS(2402), 1, - anon_sym_SEMI, - ACTIONS(2358), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(35), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - STATE(729), 4, - sym_attribute_specifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(33), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - [47200] = 3, + [24085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2406), 7, + ACTIONS(2409), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -52450,7 +52925,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2404), 11, + ACTIONS(2407), 11, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -52462,10 +52937,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [47226] = 3, + [24111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2410), 7, + ACTIONS(2413), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -52473,7 +52948,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2408), 11, + ACTIONS(2411), 11, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -52485,10 +52960,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [47252] = 3, + [24137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2414), 7, + ACTIONS(2417), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -52496,7 +52971,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2412), 11, + ACTIONS(2415), 11, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -52508,44 +52983,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [47278] = 8, + [24163] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(25), 1, anon_sym___attribute__, - ACTIONS(2356), 1, - sym_identifier, - ACTIONS(2416), 1, - anon_sym_SEMI, - ACTIONS(2358), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(35), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - STATE(729), 4, - sym_attribute_specifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(33), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - [47314] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(25), 1, - anon_sym___attribute__, - ACTIONS(2356), 1, + ACTIONS(2350), 1, sym_identifier, - ACTIONS(2418), 1, + ACTIONS(2419), 1, anon_sym_SEMI, - ACTIONS(2358), 2, + ACTIONS(2352), 2, anon_sym_LPAREN2, anon_sym_STAR, ACTIONS(35), 4, @@ -52553,7 +53000,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(729), 4, + STATE(728), 4, sym_attribute_specifier, sym_storage_class_specifier, sym_type_qualifier, @@ -52564,10 +53011,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - [47350] = 3, + [24199] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 7, + ACTIONS(2423), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -52575,7 +53022,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2420), 11, + ACTIONS(2421), 11, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -52587,10 +53034,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [47376] = 3, + [24225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2426), 7, + ACTIONS(2427), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -52598,7 +53045,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2424), 11, + ACTIONS(2425), 11, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -52610,10 +53057,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [47402] = 3, + [24251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2430), 7, + ACTIONS(2431), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -52621,7 +53068,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2428), 11, + ACTIONS(2429), 11, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -52633,18 +53080,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [47428] = 3, + [24277] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2434), 7, + ACTIONS(2433), 1, + anon_sym_LPAREN2, + ACTIONS(1866), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2432), 11, + ACTIONS(1218), 11, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -52656,7 +53104,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [47454] = 3, + [24305] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2438), 7, @@ -52679,16 +53127,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [47480] = 8, + [24331] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(25), 1, anon_sym___attribute__, - ACTIONS(2356), 1, + ACTIONS(2350), 1, sym_identifier, ACTIONS(2440), 1, anon_sym_SEMI, - ACTIONS(2358), 2, + ACTIONS(2352), 2, anon_sym_LPAREN2, anon_sym_STAR, ACTIONS(35), 4, @@ -52696,7 +53144,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(729), 4, + STATE(728), 4, sym_attribute_specifier, sym_storage_class_specifier, sym_type_qualifier, @@ -52707,7 +53155,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - [47516] = 3, + [24367] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2444), 7, @@ -52730,7 +53178,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [47542] = 3, + [24393] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2448), 7, @@ -52753,7 +53201,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [47568] = 3, + [24419] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2452), 7, @@ -52776,30 +53224,63 @@ static uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [47594] = 3, + [24445] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2456), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(25), 1, + anon_sym___attribute__, + ACTIONS(2350), 1, + sym_identifier, + ACTIONS(2454), 1, anon_sym_SEMI, + ACTIONS(2352), 2, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2454), 11, + ACTIONS(35), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + STATE(728), 4, + sym_attribute_specifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(33), 5, anon_sym_extern, - anon_sym___attribute__, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + [24481] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym___attribute__, + ACTIONS(2350), 1, + sym_identifier, + ACTIONS(2456), 1, + anon_sym_SEMI, + ACTIONS(2352), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(35), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - sym_identifier, - [47620] = 3, + STATE(728), 4, + sym_attribute_specifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(33), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + [24517] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2460), 7, @@ -52822,244 +53303,244 @@ static uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [47646] = 9, + [24543] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 1, + ACTIONS(1387), 1, anon_sym_LPAREN2, - ACTIONS(1276), 1, + ACTIONS(1389), 1, anon_sym_STAR, - ACTIONS(1278), 1, + ACTIONS(1391), 1, anon_sym_LBRACK, ACTIONS(2462), 1, sym_identifier, - STATE(900), 1, + STATE(892), 1, sym_parameter_list, ACTIONS(2464), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(843), 5, + STATE(856), 5, sym__abstract_declarator, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - STATE(853), 5, + STATE(861), 5, sym__declarator, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [47683] = 9, + [24580] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 1, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1402), 1, + ACTIONS(1690), 1, anon_sym_LPAREN2, - ACTIONS(1404), 1, + ACTIONS(1692), 1, anon_sym_STAR, - ACTIONS(2334), 1, + ACTIONS(2466), 1, anon_sym_RPAREN, - STATE(900), 1, + STATE(892), 1, sym_parameter_list, - STATE(763), 2, + STATE(762), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2466), 4, + ACTIONS(2468), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(854), 5, + STATE(865), 5, sym__abstract_declarator, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - [47719] = 9, + [24616] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 1, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1402), 1, + ACTIONS(1690), 1, anon_sym_LPAREN2, - ACTIONS(1404), 1, + ACTIONS(1692), 1, anon_sym_STAR, - ACTIONS(2468), 1, + ACTIONS(2336), 1, anon_sym_RPAREN, - STATE(900), 1, + STATE(892), 1, sym_parameter_list, - STATE(734), 2, + STATE(759), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2466), 4, + ACTIONS(2468), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(878), 5, + STATE(858), 5, sym__abstract_declarator, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - [47755] = 5, + [24652] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2473), 1, - anon_sym_LPAREN2, - ACTIONS(1576), 2, - anon_sym_COMMA, - anon_sym_STAR, - ACTIONS(2470), 2, - anon_sym_RPAREN, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1198), 11, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - sym_identifier, - [47783] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1278), 1, - anon_sym_LBRACK, - ACTIONS(1402), 1, + ACTIONS(1690), 1, anon_sym_LPAREN2, - ACTIONS(1404), 1, + ACTIONS(1692), 1, anon_sym_STAR, - ACTIONS(2477), 1, + ACTIONS(2332), 1, anon_sym_RPAREN, - STATE(900), 1, + STATE(892), 1, sym_parameter_list, - STATE(761), 2, + STATE(730), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2466), 4, + ACTIONS(2468), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(892), 5, + STATE(848), 5, sym__abstract_declarator, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - [47819] = 9, + [24688] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 1, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1402), 1, + ACTIONS(1690), 1, anon_sym_LPAREN2, - ACTIONS(1404), 1, + ACTIONS(1692), 1, anon_sym_STAR, - ACTIONS(2479), 1, + ACTIONS(2470), 1, anon_sym_RPAREN, - STATE(900), 1, + STATE(892), 1, sym_parameter_list, - STATE(734), 2, + STATE(730), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2466), 4, + ACTIONS(2468), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(874), 5, + STATE(866), 5, sym__abstract_declarator, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - [47855] = 9, + [24724] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 1, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1402), 1, + ACTIONS(1690), 1, anon_sym_LPAREN2, - ACTIONS(1404), 1, + ACTIONS(1692), 1, anon_sym_STAR, - ACTIONS(2481), 1, + ACTIONS(2472), 1, anon_sym_RPAREN, - STATE(900), 1, + STATE(892), 1, sym_parameter_list, - STATE(758), 2, + STATE(760), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2466), 4, + ACTIONS(2468), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(875), 5, + STATE(886), 5, sym__abstract_declarator, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - [47891] = 9, + [24760] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 1, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1402), 1, + ACTIONS(1690), 1, anon_sym_LPAREN2, - ACTIONS(1404), 1, + ACTIONS(1692), 1, anon_sym_STAR, - ACTIONS(2330), 1, + ACTIONS(2474), 1, anon_sym_RPAREN, - STATE(900), 1, + STATE(892), 1, sym_parameter_list, - STATE(734), 2, + STATE(730), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2466), 4, + ACTIONS(2468), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(852), 5, + STATE(901), 5, sym__abstract_declarator, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - [47927] = 7, + [24796] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2319), 1, + ACTIONS(2479), 1, + anon_sym_LPAREN2, + ACTIONS(1866), 2, + anon_sym_COMMA, + anon_sym_STAR, + ACTIONS(2476), 2, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(1218), 11, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + sym_identifier, + [24824] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2321), 1, sym_primitive_type, ACTIONS(2483), 1, sym_identifier, - STATE(709), 1, + STATE(713), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2313), 4, + ACTIONS(2315), 4, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2315), 4, + ACTIONS(2317), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(2317), 4, + ACTIONS(2319), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [47958] = 7, + [24855] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2485), 1, @@ -53068,7 +53549,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(2489), 1, anon_sym_STAR, - STATE(768), 2, + STATE(730), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(35), 4, @@ -53076,13 +53557,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(840), 5, - sym__type_declarator, - sym_parenthesized_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [47988] = 7, + STATE(817), 5, + sym__field_declarator, + sym_parenthesized_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [24885] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2491), 1, @@ -53099,13 +53580,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(817), 5, - sym__field_declarator, - sym_parenthesized_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [48018] = 7, + STATE(844), 5, + sym__type_declarator, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [24915] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2491), 1, @@ -53114,7 +53595,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(2495), 1, anon_sym_STAR, - STATE(734), 2, + STATE(730), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(35), 4, @@ -53122,13 +53603,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(813), 5, - sym__field_declarator, - sym_parenthesized_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [48048] = 7, + STATE(827), 5, + sym__type_declarator, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [24945] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2485), 1, @@ -53137,7 +53618,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(2489), 1, anon_sym_STAR, - STATE(734), 2, + STATE(765), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(35), 4, @@ -53145,22 +53626,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(824), 5, - sym__type_declarator, - sym_parenthesized_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [48078] = 7, + STATE(818), 5, + sym__field_declarator, + sym_parenthesized_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [24975] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2328), 1, + ACTIONS(2334), 1, sym_identifier, ACTIONS(2497), 1, anon_sym_LPAREN2, ACTIONS(2499), 1, anon_sym_STAR, - STATE(734), 2, + STATE(770), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(35), 4, @@ -53168,22 +53649,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(798), 5, + STATE(795), 5, sym__declarator, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [48108] = 7, + [25005] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2332), 1, + ACTIONS(2330), 1, sym_identifier, ACTIONS(2497), 1, anon_sym_LPAREN2, ACTIONS(2499), 1, anon_sym_STAR, - STATE(769), 2, + STATE(730), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(35), 4, @@ -53191,18 +53672,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(794), 5, + STATE(806), 5, sym__declarator, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [48138] = 8, + [25035] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2493), 1, + ACTIONS(2487), 1, anon_sym_LPAREN2, - ACTIONS(2495), 1, + ACTIONS(2489), 1, anon_sym_STAR, ACTIONS(2501), 1, sym_identifier, @@ -53210,20 +53691,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, ACTIONS(2505), 1, anon_sym_COLON, - STATE(1105), 1, + STATE(1056), 1, sym_bitfield_clause, - STATE(804), 5, + STATE(793), 5, sym__field_declarator, sym_parenthesized_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [48167] = 8, + [25064] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2493), 1, + ACTIONS(2487), 1, anon_sym_LPAREN2, - ACTIONS(2495), 1, + ACTIONS(2489), 1, anon_sym_STAR, ACTIONS(2501), 1, sym_identifier, @@ -53231,20 +53712,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, ACTIONS(2507), 1, anon_sym_SEMI, - STATE(1033), 1, + STATE(1034), 1, sym_bitfield_clause, - STATE(802), 5, + STATE(800), 5, sym__field_declarator, sym_parenthesized_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [48196] = 8, + [25093] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2493), 1, + ACTIONS(2487), 1, anon_sym_LPAREN2, - ACTIONS(2495), 1, + ACTIONS(2489), 1, anon_sym_STAR, ACTIONS(2501), 1, sym_identifier, @@ -53252,15 +53733,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, ACTIONS(2509), 1, anon_sym_SEMI, - STATE(1040), 1, + STATE(1105), 1, sym_bitfield_clause, - STATE(805), 5, + STATE(796), 5, sym__field_declarator, sym_parenthesized_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [48225] = 4, + [25122] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2513), 1, @@ -53276,12 +53757,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, - [48245] = 4, + [25142] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2518), 1, anon_sym___attribute__, - STATE(774), 2, + STATE(776), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, ACTIONS(2516), 7, @@ -53292,12 +53773,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, - [48265] = 4, + [25162] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2518), 1, anon_sym___attribute__, - STATE(775), 2, + STATE(774), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, ACTIONS(2520), 7, @@ -53308,10 +53789,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, - [48285] = 10, + [25182] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(109), 1, + ACTIONS(29), 1, anon_sym_LBRACE, ACTIONS(2522), 1, anon_sym_COMMA, @@ -53323,13 +53804,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2530), 1, anon_sym_EQ, - STATE(178), 1, + STATE(310), 1, sym_compound_statement, - STATE(776), 1, + STATE(775), 1, sym_parameter_list, - STATE(936), 1, + STATE(943), 1, aux_sym_declaration_repeat1, - [48316] = 2, + [25213] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2532), 9, @@ -53342,27 +53823,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, - [48331] = 6, + [25228] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2534), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_COLON, + [25243] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2497), 1, anon_sym_LPAREN2, ACTIONS(2499), 1, anon_sym_STAR, - ACTIONS(2534), 1, + ACTIONS(2536), 1, sym_identifier, - STATE(914), 1, + STATE(915), 1, sym_init_declarator, - STATE(811), 5, + STATE(777), 5, sym__declarator, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [48354] = 10, + [25266] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(109), 1, anon_sym_LBRACE, ACTIONS(2522), 1, anon_sym_COMMA, @@ -53372,32 +53866,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2530), 1, anon_sym_EQ, - ACTIONS(2536), 1, + ACTIONS(2538), 1, anon_sym_SEMI, - STATE(300), 1, + STATE(187), 1, sym_compound_statement, - STATE(776), 1, + STATE(775), 1, sym_parameter_list, - STATE(923), 1, + STATE(930), 1, aux_sym_declaration_repeat1, - [48385] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2497), 1, - anon_sym_LPAREN2, - ACTIONS(2499), 1, - anon_sym_STAR, - ACTIONS(2538), 1, - sym_identifier, - STATE(906), 1, - sym_init_declarator, - STATE(784), 5, - sym__declarator, - sym_parenthesized_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [48408] = 6, + [25297] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2497), 1, @@ -53406,35 +53883,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(2540), 1, sym_identifier, - STATE(938), 1, - sym_init_declarator, - STATE(777), 5, - sym__declarator, - sym_parenthesized_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [48431] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2497), 1, - anon_sym_LPAREN2, - ACTIONS(2499), 1, - anon_sym_STAR, - ACTIONS(2542), 1, - sym_identifier, - STATE(963), 1, + STATE(985), 1, sym_init_declarator, - STATE(837), 5, + STATE(830), 5, sym__declarator, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [48454] = 10, + [25320] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(436), 1, + ACTIONS(606), 1, anon_sym_LBRACE, ACTIONS(2522), 1, anon_sym_COMMA, @@ -53444,15 +53904,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2530), 1, anon_sym_EQ, - ACTIONS(2544), 1, + ACTIONS(2542), 1, anon_sym_SEMI, - STATE(335), 1, + STATE(346), 1, sym_compound_statement, - STATE(776), 1, + STATE(775), 1, sym_parameter_list, - STATE(926), 1, + STATE(914), 1, aux_sym_declaration_repeat1, - [48485] = 6, + [25351] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2544), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_COLON, + [25366] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2497), 1, @@ -53461,28 +53934,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(2546), 1, sym_identifier, - STATE(914), 1, + STATE(936), 1, sym_init_declarator, - STATE(780), 5, + STATE(792), 5, sym__declarator, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [48508] = 2, + [25389] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(2497), 1, anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_COLON, - [48523] = 6, + ACTIONS(2499), 1, + anon_sym_STAR, + ACTIONS(2548), 1, + sym_identifier, + STATE(915), 1, + sym_init_declarator, + STATE(819), 5, + sym__declarator, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [25412] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2497), 1, @@ -53493,13 +53970,13 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, STATE(938), 1, sym_init_declarator, - STATE(812), 5, + STATE(813), 5, sym__declarator, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [48546] = 6, + [25435] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2497), 1, @@ -53508,413 +53985,380 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(2552), 1, sym_identifier, - STATE(932), 1, + STATE(938), 1, sym_init_declarator, - STATE(815), 5, + STATE(781), 5, sym__declarator, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [48569] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(2522), 1, - anon_sym_COMMA, - ACTIONS(2526), 1, - anon_sym_LPAREN2, - ACTIONS(2528), 1, - anon_sym_LBRACK, - ACTIONS(2530), 1, - anon_sym_EQ, - ACTIONS(2554), 1, - anon_sym_SEMI, - STATE(303), 1, - sym_compound_statement, - STATE(776), 1, - sym_parameter_list, - STATE(941), 1, - aux_sym_declaration_repeat1, - [48600] = 6, + [25458] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2497), 1, anon_sym_LPAREN2, ACTIONS(2499), 1, anon_sym_STAR, - ACTIONS(2556), 1, + ACTIONS(2554), 1, sym_identifier, - STATE(932), 1, + STATE(908), 1, sym_init_declarator, - STATE(789), 5, + STATE(825), 5, sym__declarator, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [48623] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2558), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_COLON, - [48638] = 6, + [25481] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2497), 1, anon_sym_LPAREN2, ACTIONS(2499), 1, anon_sym_STAR, - ACTIONS(2560), 1, + ACTIONS(2556), 1, sym_identifier, - STATE(906), 1, + STATE(908), 1, sym_init_declarator, - STATE(816), 5, + STATE(783), 5, sym__declarator, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [48661] = 5, + [25504] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2487), 1, + ACTIONS(2497), 1, anon_sym_LPAREN2, - ACTIONS(2489), 1, + ACTIONS(2499), 1, anon_sym_STAR, - ACTIONS(2562), 1, + ACTIONS(2558), 1, sym_identifier, - STATE(890), 5, - sym__type_declarator, - sym_parenthesized_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [48681] = 5, + STATE(936), 1, + sym_init_declarator, + STATE(815), 5, + sym__declarator, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [25527] = 10, ACTIONS(3), 1, sym_comment, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(2522), 1, + anon_sym_COMMA, ACTIONS(2526), 1, anon_sym_LPAREN2, ACTIONS(2528), 1, anon_sym_LBRACK, - STATE(776), 1, - sym_parameter_list, - ACTIONS(2564), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(2530), 1, anon_sym_EQ, - [48701] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2487), 1, - anon_sym_LPAREN2, - ACTIONS(2489), 1, - anon_sym_STAR, - ACTIONS(2562), 1, - sym_identifier, - STATE(831), 5, - sym__type_declarator, - sym_parenthesized_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [48721] = 5, + ACTIONS(2560), 1, + anon_sym_SEMI, + STATE(307), 1, + sym_compound_statement, + STATE(775), 1, + sym_parameter_list, + STATE(933), 1, + aux_sym_declaration_repeat1, + [25558] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2487), 1, + ACTIONS(2505), 1, + anon_sym_COLON, + ACTIONS(2526), 1, anon_sym_LPAREN2, - ACTIONS(2489), 1, - anon_sym_STAR, ACTIONS(2562), 1, - sym_identifier, - STATE(827), 5, - sym__type_declarator, - sym_parenthesized_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [48741] = 5, + anon_sym_COMMA, + ACTIONS(2564), 1, + anon_sym_SEMI, + ACTIONS(2566), 1, + anon_sym_LBRACK, + STATE(843), 1, + sym_parameter_list, + STATE(853), 1, + aux_sym_field_declaration_repeat1, + STATE(1041), 1, + sym_bitfield_clause, + [25586] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2487), 1, + ACTIONS(2493), 1, anon_sym_LPAREN2, - ACTIONS(2489), 1, + ACTIONS(2495), 1, anon_sym_STAR, - ACTIONS(2562), 1, + ACTIONS(2568), 1, sym_identifier, - STATE(826), 5, + STATE(836), 5, sym__type_declarator, sym_parenthesized_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [48761] = 5, + [25606] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2526), 1, anon_sym_LPAREN2, ACTIONS(2528), 1, anon_sym_LBRACK, - STATE(776), 1, + STATE(775), 1, sym_parameter_list, - ACTIONS(2566), 5, + ACTIONS(2570), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - [48781] = 5, + anon_sym_LBRACE, + anon_sym_EQ, + [25626] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2505), 1, + anon_sym_COLON, + ACTIONS(2526), 1, + anon_sym_LPAREN2, + ACTIONS(2562), 1, + anon_sym_COMMA, + ACTIONS(2566), 1, + anon_sym_LBRACK, + ACTIONS(2572), 1, + anon_sym_SEMI, + STATE(843), 1, + sym_parameter_list, + STATE(847), 1, + aux_sym_field_declaration_repeat1, + STATE(1087), 1, + sym_bitfield_clause, + [25654] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2487), 1, + ACTIONS(2493), 1, anon_sym_LPAREN2, - ACTIONS(2489), 1, + ACTIONS(2495), 1, anon_sym_STAR, - ACTIONS(2562), 1, + ACTIONS(2568), 1, sym_identifier, - STATE(834), 5, + STATE(837), 5, sym__type_declarator, sym_parenthesized_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [48801] = 5, + [25674] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2493), 1, anon_sym_LPAREN2, ACTIONS(2495), 1, anon_sym_STAR, - ACTIONS(2501), 1, + ACTIONS(2568), 1, sym_identifier, - STATE(829), 5, - sym__field_declarator, - sym_parenthesized_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [48821] = 5, + STATE(839), 5, + sym__type_declarator, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [25694] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2493), 1, + ACTIONS(2487), 1, anon_sym_LPAREN2, - ACTIONS(2495), 1, + ACTIONS(2489), 1, anon_sym_STAR, ACTIONS(2501), 1, sym_identifier, - STATE(859), 5, + STATE(899), 5, sym__field_declarator, sym_parenthesized_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [48841] = 9, + [25714] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2505), 1, anon_sym_COLON, ACTIONS(2526), 1, anon_sym_LPAREN2, - ACTIONS(2568), 1, + ACTIONS(2562), 1, anon_sym_COMMA, - ACTIONS(2570), 1, - anon_sym_SEMI, - ACTIONS(2572), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - STATE(842), 1, + ACTIONS(2574), 1, + anon_sym_SEMI, + STATE(843), 1, sym_parameter_list, - STATE(855), 1, + STATE(851), 1, aux_sym_field_declaration_repeat1, - STATE(995), 1, + STATE(1026), 1, sym_bitfield_clause, - [48869] = 5, + [25742] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2487), 1, + ACTIONS(2493), 1, anon_sym_LPAREN2, - ACTIONS(2489), 1, + ACTIONS(2495), 1, anon_sym_STAR, - ACTIONS(2562), 1, + ACTIONS(2568), 1, sym_identifier, - STATE(822), 5, + STATE(826), 5, sym__type_declarator, sym_parenthesized_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [48889] = 9, + [25762] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2505), 1, - anon_sym_COLON, - ACTIONS(2526), 1, + ACTIONS(2493), 1, anon_sym_LPAREN2, + ACTIONS(2495), 1, + anon_sym_STAR, ACTIONS(2568), 1, - anon_sym_COMMA, - ACTIONS(2572), 1, - anon_sym_LBRACK, - ACTIONS(2574), 1, - anon_sym_SEMI, - STATE(842), 1, - sym_parameter_list, - STATE(845), 1, - aux_sym_field_declaration_repeat1, - STATE(1095), 1, - sym_bitfield_clause, - [48917] = 9, + sym_identifier, + STATE(833), 5, + sym__type_declarator, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [25782] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2505), 1, - anon_sym_COLON, - ACTIONS(2526), 1, + ACTIONS(2487), 1, anon_sym_LPAREN2, - ACTIONS(2568), 1, - anon_sym_COMMA, - ACTIONS(2572), 1, - anon_sym_LBRACK, - ACTIONS(2576), 1, - anon_sym_SEMI, - STATE(842), 1, - sym_parameter_list, - STATE(857), 1, - aux_sym_field_declaration_repeat1, - STATE(1022), 1, - sym_bitfield_clause, - [48945] = 5, + ACTIONS(2489), 1, + anon_sym_STAR, + ACTIONS(2501), 1, + sym_identifier, + STATE(834), 5, + sym__field_declarator, + sym_parenthesized_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [25802] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2497), 1, anon_sym_LPAREN2, ACTIONS(2499), 1, anon_sym_STAR, - ACTIONS(2578), 1, + ACTIONS(2576), 1, sym_identifier, - STATE(869), 5, + STATE(874), 5, sym__declarator, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [48965] = 5, + [25822] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2487), 1, + ACTIONS(2493), 1, anon_sym_LPAREN2, - ACTIONS(2489), 1, + ACTIONS(2495), 1, anon_sym_STAR, - ACTIONS(2562), 1, + ACTIONS(2568), 1, sym_identifier, - STATE(833), 5, + STATE(829), 5, sym__type_declarator, sym_parenthesized_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [48985] = 5, + [25842] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2487), 1, + ACTIONS(2526), 1, anon_sym_LPAREN2, - ACTIONS(2489), 1, + ACTIONS(2528), 1, + anon_sym_LBRACK, + STATE(775), 1, + sym_parameter_list, + ACTIONS(2578), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + [25862] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2493), 1, + anon_sym_LPAREN2, + ACTIONS(2495), 1, anon_sym_STAR, - ACTIONS(2562), 1, + ACTIONS(2568), 1, sym_identifier, - STATE(835), 5, + STATE(838), 5, sym__type_declarator, sym_parenthesized_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [49005] = 5, + [25882] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2487), 1, + ACTIONS(2493), 1, anon_sym_LPAREN2, - ACTIONS(2489), 1, + ACTIONS(2495), 1, anon_sym_STAR, - ACTIONS(2562), 1, + ACTIONS(2568), 1, sym_identifier, - STATE(844), 5, + STATE(896), 5, sym__type_declarator, sym_parenthesized_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [49025] = 5, + [25902] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2487), 1, + ACTIONS(2493), 1, anon_sym_LPAREN2, - ACTIONS(2489), 1, + ACTIONS(2495), 1, anon_sym_STAR, - ACTIONS(2562), 1, + ACTIONS(2568), 1, sym_identifier, - STATE(832), 5, + STATE(828), 5, sym__type_declarator, sym_parenthesized_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [49045] = 8, + [25922] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2522), 1, - anon_sym_COMMA, - ACTIONS(2526), 1, + ACTIONS(2493), 1, anon_sym_LPAREN2, - ACTIONS(2528), 1, - anon_sym_LBRACK, - ACTIONS(2530), 1, - anon_sym_EQ, - ACTIONS(2536), 1, - anon_sym_SEMI, - STATE(776), 1, - sym_parameter_list, - STATE(923), 1, - aux_sym_declaration_repeat1, - [49070] = 8, + ACTIONS(2495), 1, + anon_sym_STAR, + ACTIONS(2568), 1, + sym_identifier, + STATE(850), 5, + sym__type_declarator, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [25942] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2522), 1, + ACTIONS(2580), 7, anon_sym_COMMA, - ACTIONS(2524), 1, + anon_sym_RPAREN, anon_sym_SEMI, - ACTIONS(2526), 1, anon_sym_LPAREN2, - ACTIONS(2528), 1, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(2530), 1, anon_sym_EQ, - STATE(776), 1, - sym_parameter_list, - STATE(936), 1, - aux_sym_declaration_repeat1, - [49095] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2526), 1, - anon_sym_LPAREN2, - ACTIONS(2572), 1, - anon_sym_LBRACK, - STATE(842), 1, - sym_parameter_list, - ACTIONS(2580), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - [49114] = 2, + [25955] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2582), 7, @@ -53925,7 +54369,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, - [49127] = 8, + [25968] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2522), 1, @@ -53936,13 +54380,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2530), 1, anon_sym_EQ, - ACTIONS(2554), 1, + ACTIONS(2538), 1, anon_sym_SEMI, - STATE(776), 1, + STATE(775), 1, sym_parameter_list, - STATE(941), 1, + STATE(930), 1, aux_sym_declaration_repeat1, - [49152] = 8, + [25993] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2586), 1, + sym_system_lib_string, + STATE(170), 1, + sym_string_literal, + ACTIONS(2584), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [26010] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2522), 1, @@ -53953,41 +54410,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2530), 1, anon_sym_EQ, - ACTIONS(2544), 1, + ACTIONS(2560), 1, anon_sym_SEMI, - STATE(776), 1, + STATE(775), 1, sym_parameter_list, - STATE(926), 1, + STATE(933), 1, aux_sym_declaration_repeat1, - [49177] = 5, + [26035] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2588), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + [26048] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2526), 1, anon_sym_LPAREN2, - ACTIONS(2572), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - STATE(842), 1, + STATE(843), 1, sym_parameter_list, - ACTIONS(2584), 4, + ACTIONS(2590), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, - [49196] = 2, + [26067] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2586), 7, + ACTIONS(2526), 1, + anon_sym_LPAREN2, + ACTIONS(2566), 1, + anon_sym_LBRACK, + STATE(843), 1, + sym_parameter_list, + ACTIONS(2592), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_COLON, + [26086] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2522), 1, + anon_sym_COMMA, + ACTIONS(2524), 1, + anon_sym_SEMI, + ACTIONS(2526), 1, anon_sym_LPAREN2, - anon_sym_LBRACE, + ACTIONS(2528), 1, anon_sym_LBRACK, + ACTIONS(2530), 1, anon_sym_EQ, - [49209] = 2, + STATE(775), 1, + sym_parameter_list, + STATE(943), 1, + aux_sym_declaration_repeat1, + [26111] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2588), 7, + ACTIONS(2594), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -53995,10 +54483,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, - [49222] = 2, + [26124] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2598), 1, + sym_system_lib_string, + STATE(357), 1, + sym_string_literal, + ACTIONS(2596), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [26141] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2590), 7, + ACTIONS(2600), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -54006,2422 +54507,2414 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, - [49235] = 2, + [26154] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2604), 1, + sym_system_lib_string, + STATE(301), 1, + sym_string_literal, + ACTIONS(2602), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [26171] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 7, + ACTIONS(2608), 1, + sym_system_lib_string, + STATE(318), 1, + sym_string_literal, + ACTIONS(2606), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [26188] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2522), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(2526), 1, anon_sym_LPAREN2, - anon_sym_LBRACE, + ACTIONS(2528), 1, anon_sym_LBRACK, + ACTIONS(2530), 1, anon_sym_EQ, - [49248] = 7, + ACTIONS(2542), 1, + anon_sym_SEMI, + STATE(775), 1, + sym_parameter_list, + STATE(914), 1, + aux_sym_declaration_repeat1, + [26213] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2526), 1, anon_sym_LPAREN2, - ACTIONS(2594), 1, + ACTIONS(2610), 1, anon_sym_COMMA, - ACTIONS(2596), 1, + ACTIONS(2612), 1, anon_sym_SEMI, - ACTIONS(2598), 1, + ACTIONS(2614), 1, anon_sym_LBRACK, - STATE(847), 1, + STATE(855), 1, sym_parameter_list, - STATE(930), 1, + STATE(916), 1, aux_sym_type_definition_repeat2, - [49270] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2600), 1, - anon_sym_LBRACK, - ACTIONS(2603), 1, - anon_sym_EQ, - ACTIONS(2605), 1, - anon_sym_DOT, - STATE(823), 3, - sym_subscript_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [49288] = 5, + [26235] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2526), 1, anon_sym_LPAREN2, - ACTIONS(2598), 1, + ACTIONS(2614), 1, anon_sym_LBRACK, - STATE(847), 1, + STATE(855), 1, sym_parameter_list, - ACTIONS(2608), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - [49306] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2610), 6, + ACTIONS(2616), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [49318] = 7, + [26253] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2526), 1, anon_sym_LPAREN2, - ACTIONS(2594), 1, + ACTIONS(2610), 1, anon_sym_COMMA, - ACTIONS(2598), 1, + ACTIONS(2614), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2618), 1, anon_sym_SEMI, - STATE(847), 1, + STATE(855), 1, sym_parameter_list, - STATE(911), 1, + STATE(920), 1, aux_sym_type_definition_repeat2, - [49340] = 7, + [26275] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2526), 1, anon_sym_LPAREN2, - ACTIONS(2594), 1, + ACTIONS(2610), 1, anon_sym_COMMA, - ACTIONS(2598), 1, - anon_sym_LBRACK, ACTIONS(2614), 1, + anon_sym_LBRACK, + ACTIONS(2620), 1, anon_sym_SEMI, - STATE(847), 1, + STATE(855), 1, sym_parameter_list, - STATE(931), 1, + STATE(939), 1, aux_sym_type_definition_repeat2, - [49362] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2616), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [49374] = 5, + [26297] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2526), 1, anon_sym_LPAREN2, - ACTIONS(2572), 1, + ACTIONS(2528), 1, anon_sym_LBRACK, - STATE(842), 1, + ACTIONS(2530), 1, + anon_sym_EQ, + STATE(775), 1, sym_parameter_list, - ACTIONS(2618), 3, + ACTIONS(2622), 2, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [49392] = 2, + [26317] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2627), 1, + anon_sym_EQ, + ACTIONS(2629), 1, + anon_sym_DOT, + STATE(831), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [26335] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2620), 6, + ACTIONS(2632), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [49404] = 7, + [26347] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2526), 1, anon_sym_LPAREN2, - ACTIONS(2594), 1, + ACTIONS(2610), 1, anon_sym_COMMA, - ACTIONS(2598), 1, + ACTIONS(2614), 1, anon_sym_LBRACK, - ACTIONS(2622), 1, + ACTIONS(2634), 1, anon_sym_SEMI, - STATE(847), 1, + STATE(855), 1, sym_parameter_list, - STATE(937), 1, + STATE(926), 1, aux_sym_type_definition_repeat2, - [49426] = 7, + [26369] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2526), 1, anon_sym_LPAREN2, - ACTIONS(2594), 1, - anon_sym_COMMA, - ACTIONS(2598), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, - anon_sym_SEMI, - STATE(847), 1, + STATE(843), 1, sym_parameter_list, - STATE(934), 1, - aux_sym_type_definition_repeat2, - [49448] = 7, + ACTIONS(2636), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + [26387] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2638), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [26399] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2526), 1, anon_sym_LPAREN2, - ACTIONS(2594), 1, + ACTIONS(2610), 1, anon_sym_COMMA, - ACTIONS(2598), 1, + ACTIONS(2614), 1, anon_sym_LBRACK, - ACTIONS(2626), 1, + ACTIONS(2640), 1, anon_sym_SEMI, - STATE(847), 1, + STATE(855), 1, sym_parameter_list, - STATE(924), 1, + STATE(932), 1, aux_sym_type_definition_repeat2, - [49470] = 7, + [26421] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2526), 1, anon_sym_LPAREN2, - ACTIONS(2594), 1, + ACTIONS(2610), 1, anon_sym_COMMA, - ACTIONS(2598), 1, + ACTIONS(2614), 1, anon_sym_LBRACK, - ACTIONS(2628), 1, + ACTIONS(2642), 1, anon_sym_SEMI, - STATE(847), 1, + STATE(855), 1, sym_parameter_list, - STATE(933), 1, + STATE(929), 1, aux_sym_type_definition_repeat2, - [49492] = 7, + [26443] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2526), 1, anon_sym_LPAREN2, - ACTIONS(2594), 1, + ACTIONS(2610), 1, anon_sym_COMMA, - ACTIONS(2598), 1, + ACTIONS(2614), 1, anon_sym_LBRACK, - ACTIONS(2630), 1, + ACTIONS(2644), 1, anon_sym_SEMI, - STATE(847), 1, + STATE(855), 1, sym_parameter_list, STATE(940), 1, aux_sym_type_definition_repeat2, - [49514] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1332), 1, - anon_sym_LBRACK, - ACTIONS(2632), 1, - anon_sym_EQ, - ACTIONS(2634), 1, - anon_sym_DOT, - STATE(823), 3, - sym_subscript_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [49532] = 6, + [26465] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2526), 1, anon_sym_LPAREN2, - ACTIONS(2528), 1, - anon_sym_LBRACK, - ACTIONS(2530), 1, - anon_sym_EQ, - STATE(776), 1, - sym_parameter_list, - ACTIONS(2636), 2, + ACTIONS(2610), 1, anon_sym_COMMA, + ACTIONS(2614), 1, + anon_sym_LBRACK, + ACTIONS(2646), 1, anon_sym_SEMI, - [49552] = 2, + STATE(855), 1, + sym_parameter_list, + STATE(917), 1, + aux_sym_type_definition_repeat2, + [26487] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2638), 6, + ACTIONS(2648), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [49564] = 2, + [26499] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2640), 6, + ACTIONS(2650), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [49576] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2526), 1, - anon_sym_LPAREN2, - ACTIONS(2598), 1, - anon_sym_LBRACK, - STATE(847), 1, - sym_parameter_list, - ACTIONS(2642), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - [49594] = 2, + [26511] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2644), 6, + ACTIONS(2652), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [49606] = 2, + [26523] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2646), 6, + ACTIONS(2654), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [49618] = 5, + [26535] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2526), 1, anon_sym_LPAREN2, - ACTIONS(2650), 1, + ACTIONS(2614), 1, anon_sym_LBRACK, - STATE(871), 1, + STATE(855), 1, sym_parameter_list, - ACTIONS(2648), 2, + ACTIONS(2656), 3, anon_sym_COMMA, anon_sym_RPAREN, - [49635] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2526), 1, - anon_sym_LPAREN2, - ACTIONS(2598), 1, - anon_sym_LBRACK, - STATE(847), 1, - sym_parameter_list, - ACTIONS(2652), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [49652] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2505), 1, - anon_sym_COLON, - ACTIONS(2568), 1, - anon_sym_COMMA, - ACTIONS(2654), 1, anon_sym_SEMI, - STATE(867), 1, - aux_sym_field_declaration_repeat1, - STATE(1084), 1, - sym_bitfield_clause, - [49671] = 2, + [26553] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2656), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LPAREN2, + ACTIONS(1202), 1, anon_sym_LBRACK, - [49682] = 2, + ACTIONS(2658), 1, + anon_sym_EQ, + ACTIONS(2660), 1, + anon_sym_DOT, + STATE(831), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [26571] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2658), 5, + ACTIONS(2662), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LPAREN2, anon_sym_LBRACK, - [49693] = 2, + anon_sym_COLON, + [26583] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2660), 5, + ACTIONS(2505), 1, + anon_sym_COLON, + ACTIONS(2562), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2664), 1, anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [49704] = 2, + STATE(891), 1, + aux_sym_field_declaration_repeat1, + STATE(995), 1, + sym_bitfield_clause, + [26602] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2662), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(2526), 1, anon_sym_LPAREN2, + ACTIONS(2668), 1, anon_sym_LBRACK, - [49715] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2664), 5, + STATE(873), 1, + sym_parameter_list, + ACTIONS(2666), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [49726] = 2, + [26619] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2666), 5, + ACTIONS(2670), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LPAREN2, anon_sym_LBRACK, - [49737] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2526), 1, - anon_sym_LPAREN2, - ACTIONS(2650), 1, - anon_sym_LBRACK, - STATE(871), 1, - sym_parameter_list, - ACTIONS(2668), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [49754] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2526), 1, - anon_sym_LPAREN2, - ACTIONS(2528), 1, - anon_sym_LBRACK, - STATE(776), 1, - sym_parameter_list, - ACTIONS(2648), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [49771] = 5, + [26630] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2526), 1, anon_sym_LPAREN2, - ACTIONS(2650), 1, + ACTIONS(2614), 1, anon_sym_LBRACK, - STATE(871), 1, + STATE(855), 1, sym_parameter_list, - ACTIONS(2670), 2, + ACTIONS(2672), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [49788] = 6, + anon_sym_SEMI, + [26647] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2505), 1, anon_sym_COLON, - ACTIONS(2568), 1, + ACTIONS(2562), 1, anon_sym_COMMA, - ACTIONS(2672), 1, + ACTIONS(2674), 1, anon_sym_SEMI, - STATE(867), 1, + STATE(891), 1, aux_sym_field_declaration_repeat1, - STATE(1002), 1, + STATE(1120), 1, sym_bitfield_clause, - [49807] = 2, + [26666] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2674), 5, + ACTIONS(2676), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LPAREN2, anon_sym_LBRACK, - [49818] = 6, + [26677] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2505), 1, anon_sym_COLON, - ACTIONS(2568), 1, + ACTIONS(2562), 1, anon_sym_COMMA, - ACTIONS(2676), 1, + ACTIONS(2678), 1, anon_sym_SEMI, - STATE(867), 1, + STATE(891), 1, aux_sym_field_declaration_repeat1, - STATE(1120), 1, + STATE(1022), 1, sym_bitfield_clause, - [49837] = 5, - ACTIONS(2678), 1, - anon_sym_LF, - ACTIONS(2680), 1, - anon_sym_LPAREN, - ACTIONS(2682), 1, - sym_preproc_arg, - ACTIONS(2684), 1, - sym_comment, - STATE(957), 1, - sym_preproc_params, - [49853] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2526), 1, - anon_sym_LPAREN2, - ACTIONS(2572), 1, - anon_sym_LBRACK, - ACTIONS(2686), 1, - anon_sym_RPAREN, - STATE(842), 1, - sym_parameter_list, - [49869] = 5, - ACTIONS(2680), 1, - anon_sym_LPAREN, - ACTIONS(2684), 1, - sym_comment, - ACTIONS(2688), 1, - anon_sym_LF, - ACTIONS(2690), 1, - sym_preproc_arg, - STATE(956), 1, - sym_preproc_params, - [49885] = 2, + [26696] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2692), 4, + ACTIONS(2680), 5, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LPAREN2, anon_sym_LBRACK, - [49895] = 2, + [26707] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2694), 4, + ACTIONS(2682), 5, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LPAREN2, anon_sym_LBRACK, - [49905] = 2, + [26718] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2696), 4, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2526), 1, anon_sym_LPAREN2, + ACTIONS(2668), 1, anon_sym_LBRACK, - [49915] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2698), 1, - sym_identifier, - ACTIONS(2700), 1, + STATE(873), 1, + sym_parameter_list, + ACTIONS(2684), 2, anon_sym_COMMA, - ACTIONS(2702), 1, - anon_sym_RBRACE, - STATE(916), 1, - sym_enumerator, - [49931] = 4, - ACTIONS(2684), 1, - sym_comment, - ACTIONS(2704), 1, - anon_sym_DQUOTE, - STATE(879), 1, - aux_sym_string_literal_repeat1, - ACTIONS(2706), 2, - aux_sym_string_literal_token1, - sym_escape_sequence, - [49945] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2710), 1, - sym_system_lib_string, - STATE(310), 1, - sym_string_literal, - ACTIONS(2708), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - [49959] = 4, + anon_sym_RPAREN, + [26735] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2712), 1, + ACTIONS(2686), 5, anon_sym_COMMA, - STATE(867), 1, - aux_sym_field_declaration_repeat1, - ACTIONS(2715), 2, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_COLON, - [49973] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2526), 1, anon_sym_LPAREN2, - ACTIONS(2650), 1, anon_sym_LBRACK, - ACTIONS(2717), 1, - anon_sym_RPAREN, - STATE(871), 1, - sym_parameter_list, - [49989] = 5, + [26746] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2526), 1, anon_sym_LPAREN2, - ACTIONS(2528), 1, + ACTIONS(2668), 1, anon_sym_LBRACK, - ACTIONS(2719), 1, - anon_sym_RPAREN, - STATE(776), 1, + STATE(873), 1, sym_parameter_list, - [50005] = 2, + ACTIONS(2688), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [26763] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2721), 4, + ACTIONS(2690), 5, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LPAREN2, anon_sym_LBRACK, - [50015] = 2, + [26774] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2723), 4, + ACTIONS(2692), 5, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LPAREN2, anon_sym_LBRACK, - [50025] = 4, - ACTIONS(2684), 1, + [26785] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2725), 1, - anon_sym_DQUOTE, - STATE(879), 1, - aux_sym_string_literal_repeat1, - ACTIONS(2706), 2, - aux_sym_string_literal_token1, - sym_escape_sequence, - [50039] = 5, - ACTIONS(2680), 1, + ACTIONS(2526), 1, + anon_sym_LPAREN2, + ACTIONS(2528), 1, + anon_sym_LBRACK, + STATE(775), 1, + sym_parameter_list, + ACTIONS(2684), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [26802] = 5, + ACTIONS(2694), 1, + anon_sym_LF, + ACTIONS(2696), 1, + anon_sym_LPAREN, + ACTIONS(2698), 1, + sym_preproc_arg, + ACTIONS(2700), 1, + sym_comment, + STATE(962), 1, + sym_preproc_params, + [26818] = 5, + ACTIONS(2696), 1, anon_sym_LPAREN, - ACTIONS(2684), 1, + ACTIONS(2700), 1, sym_comment, - ACTIONS(2727), 1, + ACTIONS(2702), 1, anon_sym_LF, - ACTIONS(2729), 1, + ACTIONS(2704), 1, sym_preproc_arg, - STATE(971), 1, + STATE(953), 1, sym_preproc_params, - [50055] = 5, + [26834] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2706), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [26844] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2526), 1, anon_sym_LPAREN2, - ACTIONS(2650), 1, + ACTIONS(2668), 1, anon_sym_LBRACK, - ACTIONS(2731), 1, + ACTIONS(2708), 1, anon_sym_RPAREN, - STATE(871), 1, + STATE(873), 1, sym_parameter_list, - [50071] = 5, + [26860] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2526), 1, anon_sym_LPAREN2, - ACTIONS(2650), 1, + ACTIONS(2668), 1, anon_sym_LBRACK, - ACTIONS(2733), 1, + ACTIONS(2710), 1, anon_sym_RPAREN, - STATE(871), 1, + STATE(873), 1, sym_parameter_list, - [50087] = 2, + [26876] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2735), 4, + ACTIONS(2712), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [50097] = 4, - ACTIONS(2684), 1, + [26886] = 4, + ACTIONS(2700), 1, sym_comment, - ACTIONS(2737), 1, + ACTIONS(2714), 1, anon_sym_DQUOTE, - STATE(879), 1, + STATE(881), 1, aux_sym_string_literal_repeat1, - ACTIONS(2706), 2, + ACTIONS(2716), 2, aux_sym_string_literal_token1, sym_escape_sequence, - [50111] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2526), 1, - anon_sym_LPAREN2, - ACTIONS(2650), 1, - anon_sym_LBRACK, - ACTIONS(2739), 1, - anon_sym_RPAREN, - STATE(871), 1, - sym_parameter_list, - [50127] = 4, - ACTIONS(2684), 1, + [26900] = 4, + ACTIONS(2700), 1, sym_comment, - ACTIONS(2741), 1, + ACTIONS(2718), 1, anon_sym_DQUOTE, - STATE(879), 1, + STATE(881), 1, aux_sym_string_literal_repeat1, - ACTIONS(2743), 2, + ACTIONS(2716), 2, aux_sym_string_literal_token1, sym_escape_sequence, - [50141] = 4, - ACTIONS(2684), 1, + [26914] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2720), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [26924] = 4, + ACTIONS(2700), 1, sym_comment, - ACTIONS(2746), 1, + ACTIONS(2722), 1, anon_sym_DQUOTE, - STATE(887), 1, + STATE(895), 1, aux_sym_string_literal_repeat1, - ACTIONS(2748), 2, + ACTIONS(2724), 2, aux_sym_string_literal_token1, sym_escape_sequence, - [50155] = 2, + [26938] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2750), 4, + ACTIONS(2726), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [50165] = 4, - ACTIONS(2684), 1, + [26948] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_DQUOTE, - STATE(879), 1, - aux_sym_string_literal_repeat1, - ACTIONS(2706), 2, - aux_sym_string_literal_token1, - sym_escape_sequence, - [50179] = 4, - ACTIONS(2684), 1, + ACTIONS(2728), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [26958] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2526), 1, + anon_sym_LPAREN2, + ACTIONS(2528), 1, + anon_sym_LBRACK, + ACTIONS(2730), 1, + anon_sym_RPAREN, + STATE(775), 1, + sym_parameter_list, + [26974] = 5, + ACTIONS(2696), 1, + anon_sym_LPAREN, + ACTIONS(2700), 1, + sym_comment, + ACTIONS(2732), 1, + anon_sym_LF, + ACTIONS(2734), 1, + sym_preproc_arg, + STATE(970), 1, + sym_preproc_params, + [26990] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2736), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [27000] = 4, + ACTIONS(2700), 1, sym_comment, - ACTIONS(2754), 1, + ACTIONS(2738), 1, anon_sym_DQUOTE, - STATE(865), 1, + STATE(881), 1, aux_sym_string_literal_repeat1, - ACTIONS(2756), 2, + ACTIONS(2716), 2, aux_sym_string_literal_token1, sym_escape_sequence, - [50193] = 5, - ACTIONS(2680), 1, + [27014] = 5, + ACTIONS(2696), 1, anon_sym_LPAREN, - ACTIONS(2684), 1, + ACTIONS(2700), 1, sym_comment, - ACTIONS(2758), 1, + ACTIONS(2740), 1, anon_sym_LF, - ACTIONS(2760), 1, + ACTIONS(2742), 1, sym_preproc_arg, - STATE(961), 1, + STATE(973), 1, sym_preproc_params, - [50209] = 4, - ACTIONS(3), 1, + [27030] = 4, + ACTIONS(2700), 1, sym_comment, - ACTIONS(2764), 1, - sym_system_lib_string, - STATE(295), 1, - sym_string_literal, - ACTIONS(2762), 2, - anon_sym_L_DQUOTE, + ACTIONS(2744), 1, anon_sym_DQUOTE, - [50223] = 4, - ACTIONS(2684), 1, + STATE(877), 1, + aux_sym_string_literal_repeat1, + ACTIONS(2746), 2, + aux_sym_string_literal_token1, + sym_escape_sequence, + [27044] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2526), 1, + anon_sym_LPAREN2, + ACTIONS(2668), 1, + anon_sym_LBRACK, + ACTIONS(2748), 1, + anon_sym_RPAREN, + STATE(873), 1, + sym_parameter_list, + [27060] = 4, + ACTIONS(2700), 1, sym_comment, - ACTIONS(2766), 1, + ACTIONS(2750), 1, anon_sym_DQUOTE, - STATE(872), 1, + STATE(881), 1, aux_sym_string_literal_repeat1, - ACTIONS(2768), 2, + ACTIONS(2752), 2, aux_sym_string_literal_token1, sym_escape_sequence, - [50237] = 4, - ACTIONS(2684), 1, + [27074] = 4, + ACTIONS(2700), 1, sym_comment, - ACTIONS(2770), 1, + ACTIONS(2755), 1, anon_sym_DQUOTE, - STATE(879), 1, + STATE(881), 1, aux_sym_string_literal_repeat1, - ACTIONS(2706), 2, + ACTIONS(2716), 2, aux_sym_string_literal_token1, sym_escape_sequence, - [50251] = 5, - ACTIONS(2680), 1, + [27088] = 5, + ACTIONS(2696), 1, anon_sym_LPAREN, - ACTIONS(2684), 1, + ACTIONS(2700), 1, sym_comment, - ACTIONS(2772), 1, + ACTIONS(2757), 1, anon_sym_LF, - ACTIONS(2774), 1, + ACTIONS(2759), 1, sym_preproc_arg, - STATE(950), 1, + STATE(975), 1, sym_preproc_params, - [50267] = 2, + [27104] = 4, + ACTIONS(2700), 1, + sym_comment, + ACTIONS(2761), 1, + anon_sym_DQUOTE, + STATE(882), 1, + aux_sym_string_literal_repeat1, + ACTIONS(2763), 2, + aux_sym_string_literal_token1, + sym_escape_sequence, + [27118] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2776), 4, + ACTIONS(2765), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [50277] = 5, + [27128] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2526), 1, anon_sym_LPAREN2, - ACTIONS(2598), 1, + ACTIONS(2668), 1, anon_sym_LBRACK, - ACTIONS(2778), 1, + ACTIONS(2767), 1, anon_sym_RPAREN, - STATE(847), 1, + STATE(873), 1, sym_parameter_list, - [50293] = 4, - ACTIONS(2684), 1, + [27144] = 4, + ACTIONS(2700), 1, sym_comment, - ACTIONS(2780), 1, + ACTIONS(2769), 1, anon_sym_DQUOTE, - STATE(899), 1, + STATE(869), 1, aux_sym_string_literal_repeat1, - ACTIONS(2782), 2, + ACTIONS(2771), 2, aux_sym_string_literal_token1, sym_escape_sequence, - [50307] = 5, + [27158] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2526), 1, + ACTIONS(2773), 4, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2650), 1, anon_sym_LBRACK, - ACTIONS(2784), 1, - anon_sym_RPAREN, - STATE(871), 1, - sym_parameter_list, - [50323] = 4, - ACTIONS(2684), 1, - sym_comment, - ACTIONS(2786), 1, - anon_sym_DQUOTE, - STATE(877), 1, - aux_sym_string_literal_repeat1, - ACTIONS(2788), 2, - aux_sym_string_literal_token1, - sym_escape_sequence, - [50337] = 2, + [27168] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2790), 4, + ACTIONS(2775), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [50347] = 5, - ACTIONS(2680), 1, + [27178] = 5, + ACTIONS(2696), 1, anon_sym_LPAREN, - ACTIONS(2684), 1, + ACTIONS(2700), 1, sym_comment, - ACTIONS(2792), 1, + ACTIONS(2777), 1, anon_sym_LF, - ACTIONS(2794), 1, + ACTIONS(2779), 1, sym_preproc_arg, - STATE(976), 1, + STATE(966), 1, sym_preproc_params, - [50363] = 4, - ACTIONS(2684), 1, + [27194] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2781), 1, + anon_sym_COMMA, + STATE(891), 1, + aux_sym_field_declaration_repeat1, + ACTIONS(2784), 2, + anon_sym_SEMI, + anon_sym_COLON, + [27208] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2786), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [27218] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2788), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [27228] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2790), 1, + sym_identifier, + ACTIONS(2792), 1, + anon_sym_COMMA, + ACTIONS(2794), 1, + anon_sym_RBRACE, + STATE(907), 1, + sym_enumerator, + [27244] = 4, + ACTIONS(2700), 1, sym_comment, ACTIONS(2796), 1, anon_sym_DQUOTE, - STATE(882), 1, + STATE(881), 1, aux_sym_string_literal_repeat1, - ACTIONS(2798), 2, + ACTIONS(2716), 2, aux_sym_string_literal_token1, sym_escape_sequence, - [50377] = 4, + [27258] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2802), 1, - sym_system_lib_string, - STATE(297), 1, - sym_string_literal, - ACTIONS(2800), 2, - anon_sym_L_DQUOTE, + ACTIONS(2526), 1, + anon_sym_LPAREN2, + ACTIONS(2614), 1, + anon_sym_LBRACK, + ACTIONS(2798), 1, + anon_sym_RPAREN, + STATE(855), 1, + sym_parameter_list, + [27274] = 4, + ACTIONS(2700), 1, + sym_comment, + ACTIONS(2800), 1, + anon_sym_DQUOTE, + STATE(868), 1, + aux_sym_string_literal_repeat1, + ACTIONS(2802), 2, + aux_sym_string_literal_token1, + sym_escape_sequence, + [27288] = 4, + ACTIONS(2700), 1, + sym_comment, + ACTIONS(2804), 1, anon_sym_DQUOTE, - [50391] = 2, + STATE(900), 1, + aux_sym_string_literal_repeat1, + ACTIONS(2806), 2, + aux_sym_string_literal_token1, + sym_escape_sequence, + [27302] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2804), 4, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2526), 1, anon_sym_LPAREN2, + ACTIONS(2566), 1, anon_sym_LBRACK, - [50401] = 4, - ACTIONS(2684), 1, + ACTIONS(2808), 1, + anon_sym_RPAREN, + STATE(843), 1, + sym_parameter_list, + [27318] = 4, + ACTIONS(2700), 1, sym_comment, - ACTIONS(2806), 1, + ACTIONS(2810), 1, anon_sym_DQUOTE, - STATE(879), 1, + STATE(881), 1, aux_sym_string_literal_repeat1, - ACTIONS(2706), 2, + ACTIONS(2716), 2, aux_sym_string_literal_token1, sym_escape_sequence, - [50415] = 2, + [27332] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2808), 4, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2526), 1, anon_sym_LPAREN2, + ACTIONS(2668), 1, anon_sym_LBRACK, - [50425] = 4, - ACTIONS(3), 1, - sym_comment, ACTIONS(2812), 1, - sym_system_lib_string, - STATE(182), 1, - sym_string_literal, - ACTIONS(2810), 2, - anon_sym_L_DQUOTE, - anon_sym_DQUOTE, - [50439] = 5, - ACTIONS(2680), 1, + anon_sym_RPAREN, + STATE(873), 1, + sym_parameter_list, + [27348] = 5, + ACTIONS(2696), 1, anon_sym_LPAREN, - ACTIONS(2684), 1, + ACTIONS(2700), 1, sym_comment, ACTIONS(2814), 1, anon_sym_LF, ACTIONS(2816), 1, sym_preproc_arg, - STATE(991), 1, + STATE(981), 1, sym_preproc_params, - [50455] = 4, + [27364] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2099), 1, - anon_sym_COMMA, - ACTIONS(2818), 1, - anon_sym_RPAREN, - STATE(935), 1, - aux_sym_argument_list_repeat1, - [50468] = 4, + ACTIONS(2818), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [27373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2382), 1, - anon_sym_LBRACE, - ACTIONS(2820), 1, - sym_identifier, - STATE(748), 1, - sym_enumerator_list, - [50481] = 3, + ACTIONS(2822), 1, + anon_sym_EQ, + ACTIONS(2820), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [27384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2824), 1, + ACTIONS(2826), 1, anon_sym_RPAREN, - ACTIONS(2822), 2, + ACTIONS(2824), 2, anon_sym_DOT_DOT_DOT, sym_identifier, - [50492] = 4, + [27395] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2522), 1, + ACTIONS(2828), 1, anon_sym_COMMA, - ACTIONS(2544), 1, - anon_sym_SEMI, - STATE(926), 1, - aux_sym_declaration_repeat1, - [50505] = 4, + ACTIONS(2831), 1, + anon_sym_RBRACE, + STATE(906), 1, + aux_sym_enumerator_list_repeat1, + [27408] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2826), 1, + ACTIONS(2833), 1, anon_sym_COMMA, - ACTIONS(2828), 1, + ACTIONS(2835), 1, anon_sym_RBRACE, - STATE(908), 1, + STATE(922), 1, aux_sym_enumerator_list_repeat1, - [50518] = 4, + [27421] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2830), 1, + ACTIONS(2522), 1, anon_sym_COMMA, - ACTIONS(2833), 1, - anon_sym_RBRACE, - STATE(908), 1, - aux_sym_enumerator_list_repeat1, - [50531] = 4, + ACTIONS(2542), 1, + anon_sym_SEMI, + STATE(914), 1, + aux_sym_declaration_repeat1, + [27434] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2698), 1, + ACTIONS(2385), 1, + anon_sym_LBRACE, + ACTIONS(2837), 1, sym_identifier, - ACTIONS(2828), 1, - anon_sym_RBRACE, - STATE(977), 1, - sym_enumerator, - [50544] = 4, + STATE(739), 1, + sym_enumerator_list, + [27447] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2835), 1, + ACTIONS(2839), 1, anon_sym_COMMA, - ACTIONS(2837), 1, + ACTIONS(2841), 1, anon_sym_RPAREN, - STATE(939), 1, - aux_sym_parameter_list_repeat1, - [50557] = 4, + STATE(928), 1, + aux_sym_preproc_params_repeat1, + [27460] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2379), 1, + anon_sym_LBRACE, + ACTIONS(2843), 1, + sym_identifier, + STATE(740), 1, + sym_field_declaration_list, + [27473] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2594), 1, + ACTIONS(2845), 1, anon_sym_COMMA, - ACTIONS(2839), 1, + ACTIONS(2848), 1, anon_sym_SEMI, - STATE(942), 1, - aux_sym_type_definition_repeat2, - [50570] = 4, + STATE(912), 1, + aux_sym_declaration_repeat1, + [27486] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2107), 1, + ACTIONS(2118), 1, anon_sym_COMMA, - ACTIONS(2109), 1, + ACTIONS(2120), 1, anon_sym_RBRACE, - STATE(929), 1, + STATE(941), 1, aux_sym_initializer_list_repeat1, - [50583] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2698), 1, - sym_identifier, - ACTIONS(2841), 1, - anon_sym_RBRACE, - STATE(977), 1, - sym_enumerator, - [50596] = 4, + [27499] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2522), 1, anon_sym_COMMA, - ACTIONS(2536), 1, + ACTIONS(2850), 1, anon_sym_SEMI, - STATE(923), 1, + STATE(912), 1, aux_sym_declaration_repeat1, - [50609] = 4, + [27512] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2147), 1, - anon_sym_RBRACE, - ACTIONS(2843), 1, + ACTIONS(2522), 1, anon_sym_COMMA, - STATE(915), 1, - aux_sym_initializer_list_repeat1, - [50622] = 4, + ACTIONS(2524), 1, + anon_sym_SEMI, + STATE(943), 1, + aux_sym_declaration_repeat1, + [27525] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2846), 1, + ACTIONS(2610), 1, anon_sym_COMMA, - ACTIONS(2848), 1, - anon_sym_RBRACE, - STATE(907), 1, - aux_sym_enumerator_list_repeat1, - [50635] = 2, + ACTIONS(2852), 1, + anon_sym_SEMI, + STATE(927), 1, + aux_sym_type_definition_repeat2, + [27538] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2850), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [50644] = 4, + ACTIONS(2610), 1, + anon_sym_COMMA, + ACTIONS(2854), 1, + anon_sym_SEMI, + STATE(927), 1, + aux_sym_type_definition_repeat2, + [27551] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2852), 1, - anon_sym_COMMA, - ACTIONS(2855), 1, + ACTIONS(2202), 1, anon_sym_RPAREN, + ACTIONS(2856), 1, + anon_sym_COMMA, STATE(918), 1, - aux_sym_parameter_list_repeat1, - [50657] = 4, + aux_sym_argument_list_repeat1, + [27564] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2857), 1, - anon_sym_COMMA, ACTIONS(2859), 1, + anon_sym_COMMA, + ACTIONS(2862), 1, anon_sym_RPAREN, - STATE(922), 1, + STATE(919), 1, aux_sym_preproc_params_repeat1, - [50670] = 3, + [27577] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2863), 1, - anon_sym_EQ, - ACTIONS(2861), 2, + ACTIONS(2610), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [50681] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2376), 1, - anon_sym_LBRACE, - ACTIONS(2865), 1, - sym_identifier, - STATE(753), 1, - sym_field_declaration_list, - [50694] = 4, + ACTIONS(2864), 1, + anon_sym_SEMI, + STATE(927), 1, + aux_sym_type_definition_repeat2, + [27590] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2857), 1, + ACTIONS(2110), 1, anon_sym_COMMA, - ACTIONS(2867), 1, + ACTIONS(2866), 1, anon_sym_RPAREN, - STATE(943), 1, - aux_sym_preproc_params_repeat1, - [50707] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2522), 1, - anon_sym_COMMA, - ACTIONS(2869), 1, - anon_sym_SEMI, - STATE(927), 1, - aux_sym_declaration_repeat1, - [50720] = 4, + STATE(918), 1, + aux_sym_argument_list_repeat1, + [27603] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2594), 1, + ACTIONS(2868), 1, anon_sym_COMMA, - ACTIONS(2871), 1, - anon_sym_SEMI, - STATE(942), 1, - aux_sym_type_definition_repeat2, - [50733] = 4, + ACTIONS(2870), 1, + anon_sym_RBRACE, + STATE(906), 1, + aux_sym_enumerator_list_repeat1, + [27616] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2376), 1, + ACTIONS(2379), 1, anon_sym_LBRACE, - ACTIONS(2873), 1, + ACTIONS(2872), 1, sym_identifier, - STATE(742), 1, + STATE(744), 1, sym_field_declaration_list, - [50746] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2522), 1, - anon_sym_COMMA, - ACTIONS(2875), 1, - anon_sym_SEMI, - STATE(927), 1, - aux_sym_declaration_repeat1, - [50759] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2877), 1, - anon_sym_COMMA, - ACTIONS(2880), 1, - anon_sym_SEMI, - STATE(927), 1, - aux_sym_declaration_repeat1, - [50772] = 2, + [27629] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2882), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [50781] = 4, + ACTIONS(2790), 1, + sym_identifier, + ACTIONS(2874), 1, + anon_sym_RBRACE, + STATE(945), 1, + sym_enumerator, + [27642] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1382), 1, + ACTIONS(2158), 1, anon_sym_RBRACE, - ACTIONS(2884), 1, + ACTIONS(2876), 1, anon_sym_COMMA, - STATE(915), 1, + STATE(925), 1, aux_sym_initializer_list_repeat1, - [50794] = 4, + [27655] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2594), 1, + ACTIONS(2610), 1, anon_sym_COMMA, - ACTIONS(2886), 1, + ACTIONS(2879), 1, anon_sym_SEMI, - STATE(942), 1, + STATE(927), 1, aux_sym_type_definition_repeat2, - [50807] = 4, + [27668] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2594), 1, + ACTIONS(2881), 1, anon_sym_COMMA, - ACTIONS(2888), 1, + ACTIONS(2884), 1, anon_sym_SEMI, - STATE(942), 1, + STATE(927), 1, aux_sym_type_definition_repeat2, - [50820] = 4, + [27681] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2522), 1, + ACTIONS(2839), 1, anon_sym_COMMA, - ACTIONS(2554), 1, - anon_sym_SEMI, - STATE(941), 1, - aux_sym_declaration_repeat1, - [50833] = 4, + ACTIONS(2886), 1, + anon_sym_RPAREN, + STATE(919), 1, + aux_sym_preproc_params_repeat1, + [27694] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2594), 1, + ACTIONS(2610), 1, anon_sym_COMMA, - ACTIONS(2890), 1, + ACTIONS(2888), 1, anon_sym_SEMI, - STATE(942), 1, + STATE(927), 1, aux_sym_type_definition_repeat2, - [50846] = 4, + [27707] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2594), 1, + ACTIONS(2522), 1, anon_sym_COMMA, - ACTIONS(2892), 1, + ACTIONS(2890), 1, anon_sym_SEMI, - STATE(942), 1, - aux_sym_type_definition_repeat2, - [50859] = 4, + STATE(912), 1, + aux_sym_declaration_repeat1, + [27720] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2193), 1, - anon_sym_RPAREN, - ACTIONS(2894), 1, + ACTIONS(2892), 1, anon_sym_COMMA, + ACTIONS(2894), 1, + anon_sym_RPAREN, STATE(935), 1, - aux_sym_argument_list_repeat1, - [50872] = 4, + aux_sym_parameter_list_repeat1, + [27733] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2522), 1, + ACTIONS(2610), 1, anon_sym_COMMA, - ACTIONS(2897), 1, + ACTIONS(2896), 1, anon_sym_SEMI, STATE(927), 1, - aux_sym_declaration_repeat1, - [50885] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2594), 1, - anon_sym_COMMA, - ACTIONS(2899), 1, - anon_sym_SEMI, - STATE(942), 1, aux_sym_type_definition_repeat2, - [50898] = 4, + [27746] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2522), 1, anon_sym_COMMA, - ACTIONS(2524), 1, + ACTIONS(2898), 1, anon_sym_SEMI, - STATE(936), 1, + STATE(912), 1, aux_sym_declaration_repeat1, - [50911] = 4, + [27759] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2835), 1, + ACTIONS(2900), 1, anon_sym_COMMA, - ACTIONS(2901), 1, + ACTIONS(2903), 1, anon_sym_RPAREN, - STATE(918), 1, + STATE(934), 1, aux_sym_parameter_list_repeat1, - [50924] = 4, + [27772] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2594), 1, + ACTIONS(2892), 1, anon_sym_COMMA, - ACTIONS(2903), 1, - anon_sym_SEMI, - STATE(942), 1, - aux_sym_type_definition_repeat2, - [50937] = 4, + ACTIONS(2905), 1, + anon_sym_RPAREN, + STATE(934), 1, + aux_sym_parameter_list_repeat1, + [27785] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2522), 1, anon_sym_COMMA, - ACTIONS(2905), 1, + ACTIONS(2560), 1, anon_sym_SEMI, - STATE(927), 1, + STATE(933), 1, aux_sym_declaration_repeat1, - [50950] = 4, + [27798] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2907), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [27807] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2907), 1, + ACTIONS(2522), 1, anon_sym_COMMA, - ACTIONS(2910), 1, + ACTIONS(2538), 1, anon_sym_SEMI, - STATE(942), 1, - aux_sym_type_definition_repeat2, - [50963] = 4, + STATE(930), 1, + aux_sym_declaration_repeat1, + [27820] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2912), 1, + ACTIONS(2610), 1, anon_sym_COMMA, - ACTIONS(2915), 1, - anon_sym_RPAREN, - STATE(943), 1, - aux_sym_preproc_params_repeat1, - [50976] = 2, + ACTIONS(2909), 1, + anon_sym_SEMI, + STATE(927), 1, + aux_sym_type_definition_repeat2, + [27833] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2105), 2, - anon_sym_RPAREN, + ACTIONS(2610), 1, + anon_sym_COMMA, + ACTIONS(2911), 1, anon_sym_SEMI, - [50984] = 3, + STATE(927), 1, + aux_sym_type_definition_repeat2, + [27846] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - STATE(210), 1, - sym_compound_statement, - [50994] = 2, - ACTIONS(2684), 1, - sym_comment, - ACTIONS(2917), 2, - anon_sym_LF, - sym_preproc_arg, - [51002] = 3, + ACTIONS(1210), 1, + anon_sym_RBRACE, + ACTIONS(2913), 1, + anon_sym_COMMA, + STATE(925), 1, + aux_sym_initializer_list_repeat1, + [27859] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2919), 1, - anon_sym_LPAREN2, - STATE(90), 1, - sym_parenthesized_expression, - [51012] = 3, + ACTIONS(2790), 1, + sym_identifier, + ACTIONS(2870), 1, + anon_sym_RBRACE, + STATE(945), 1, + sym_enumerator, + [27872] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 1, - anon_sym_LPAREN2, - STATE(988), 1, - sym_parenthesized_expression, - [51022] = 3, + ACTIONS(2522), 1, + anon_sym_COMMA, + ACTIONS(2915), 1, + anon_sym_SEMI, + STATE(912), 1, + aux_sym_declaration_repeat1, + [27885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 1, + ACTIONS(2917), 1, anon_sym_LPAREN2, - STATE(1032), 1, + STATE(105), 1, sym_parenthesized_expression, - [51032] = 3, - ACTIONS(2684), 1, - sym_comment, - ACTIONS(2923), 1, - anon_sym_LF, - ACTIONS(2925), 1, - sym_preproc_arg, - [51042] = 3, + [27895] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, - anon_sym_LPAREN2, - STATE(1063), 1, - sym_argument_list, - [51052] = 3, - ACTIONS(2684), 1, + ACTIONS(2831), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [27903] = 2, + ACTIONS(2700), 1, sym_comment, - ACTIONS(2927), 1, + ACTIONS(2919), 2, anon_sym_LF, - ACTIONS(2929), 1, sym_preproc_arg, - [51062] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2698), 1, - sym_identifier, - STATE(977), 1, - sym_enumerator, - [51072] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2919), 1, - anon_sym_LPAREN2, - STATE(88), 1, - sym_parenthesized_expression, - [51082] = 3, - ACTIONS(3), 1, + [27911] = 3, + ACTIONS(2700), 1, sym_comment, ACTIONS(2921), 1, - anon_sym_LPAREN2, - STATE(960), 1, - sym_parenthesized_expression, - [51092] = 3, - ACTIONS(2684), 1, - sym_comment, - ACTIONS(2931), 1, - anon_sym_LF, - ACTIONS(2933), 1, - sym_preproc_arg, - [51102] = 3, - ACTIONS(2684), 1, - sym_comment, - ACTIONS(2935), 1, anon_sym_LF, - ACTIONS(2937), 1, + ACTIONS(2923), 1, sym_preproc_arg, - [51112] = 3, + [27921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 1, + ACTIONS(2917), 1, anon_sym_LPAREN2, - STATE(1079), 1, + STATE(121), 1, sym_parenthesized_expression, - [51122] = 3, + [27931] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 1, + ACTIONS(109), 1, + anon_sym_LBRACE, + STATE(138), 1, + sym_compound_statement, + [27941] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2917), 1, anon_sym_LPAREN2, - STATE(1034), 1, + STATE(119), 1, sym_parenthesized_expression, - [51132] = 3, + [27951] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(109), 1, - anon_sym_LBRACE, - STATE(162), 1, - sym_compound_statement, - [51142] = 3, - ACTIONS(2684), 1, + ACTIONS(2150), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [27959] = 2, + ACTIONS(2700), 1, sym_comment, - ACTIONS(2939), 1, + ACTIONS(2925), 2, anon_sym_LF, - ACTIONS(2941), 1, sym_preproc_arg, - [51152] = 3, - ACTIONS(2684), 1, + [27967] = 3, + ACTIONS(2700), 1, sym_comment, - ACTIONS(2943), 1, + ACTIONS(2927), 1, anon_sym_LF, - ACTIONS(2945), 1, - sym_preproc_arg, - [51162] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2636), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [51170] = 2, + ACTIONS(2929), 1, + sym_preproc_arg, + [27977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2147), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [51178] = 3, + ACTIONS(2931), 1, + anon_sym_LPAREN2, + STATE(1037), 1, + sym_parenthesized_expression, + [27987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(310), 1, - anon_sym_LBRACE, - STATE(289), 1, - sym_compound_statement, - [51188] = 3, + ACTIONS(2917), 1, + anon_sym_LPAREN2, + STATE(84), 1, + sym_parenthesized_expression, + [27997] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2919), 1, + ACTIONS(2931), 1, anon_sym_LPAREN2, - STATE(78), 1, + STATE(984), 1, sym_parenthesized_expression, - [51198] = 3, + [28007] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 1, + ACTIONS(2931), 1, anon_sym_LPAREN2, - STATE(1102), 1, + STATE(979), 1, sym_parenthesized_expression, - [51208] = 2, + [28017] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2915), 2, - anon_sym_COMMA, + ACTIONS(2116), 2, anon_sym_RPAREN, - [51216] = 3, + anon_sym_SEMI, + [28025] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 1, + ACTIONS(2917), 1, anon_sym_LPAREN2, - STATE(945), 1, + STATE(85), 1, sym_parenthesized_expression, - [51226] = 3, + [28035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 1, + ACTIONS(2931), 1, anon_sym_LPAREN2, - STATE(965), 1, + STATE(1102), 1, sym_parenthesized_expression, - [51236] = 3, - ACTIONS(2684), 1, - sym_comment, - ACTIONS(2947), 1, - anon_sym_LF, - ACTIONS(2949), 1, - sym_preproc_arg, - [51246] = 3, - ACTIONS(2684), 1, + [28045] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 1, - aux_sym_char_literal_token1, - ACTIONS(2953), 1, - sym_escape_sequence, - [51256] = 2, - ACTIONS(2684), 1, + ACTIONS(2790), 1, + sym_identifier, + STATE(945), 1, + sym_enumerator, + [28055] = 3, + ACTIONS(2700), 1, sym_comment, - ACTIONS(2955), 2, + ACTIONS(2933), 1, anon_sym_LF, + ACTIONS(2935), 1, sym_preproc_arg, - [51264] = 2, + [28065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2185), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [51272] = 3, + ACTIONS(2931), 1, + anon_sym_LPAREN2, + STATE(949), 1, + sym_parenthesized_expression, + [28075] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(310), 1, + anon_sym_LBRACE, + STATE(265), 1, + sym_compound_statement, + [28085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2919), 1, + ACTIONS(2931), 1, anon_sym_LPAREN2, - STATE(121), 1, + STATE(1055), 1, sym_parenthesized_expression, - [51282] = 3, - ACTIONS(2684), 1, + [28095] = 3, + ACTIONS(2700), 1, sym_comment, - ACTIONS(2957), 1, + ACTIONS(2937), 1, anon_sym_LF, - ACTIONS(2959), 1, + ACTIONS(2939), 1, sym_preproc_arg, - [51292] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2833), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [51300] = 2, - ACTIONS(3), 1, + [28105] = 3, + ACTIONS(2700), 1, sym_comment, - ACTIONS(2135), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [51308] = 3, + ACTIONS(2941), 1, + aux_sym_char_literal_token1, + ACTIONS(2943), 1, + sym_escape_sequence, + [28115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2919), 1, + ACTIONS(2931), 1, anon_sym_LPAREN2, - STATE(122), 1, + STATE(964), 1, sym_parenthesized_expression, - [51318] = 3, + [28125] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2919), 1, - anon_sym_LPAREN2, - STATE(126), 1, - sym_parenthesized_expression, - [51328] = 3, - ACTIONS(3), 1, + ACTIONS(2903), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [28133] = 3, + ACTIONS(2700), 1, sym_comment, - ACTIONS(2919), 1, - anon_sym_LPAREN2, - STATE(123), 1, - sym_parenthesized_expression, - [51338] = 2, + ACTIONS(2945), 1, + anon_sym_LF, + ACTIONS(2947), 1, + sym_preproc_arg, + [28143] = 3, + ACTIONS(2700), 1, + sym_comment, + ACTIONS(2949), 1, + anon_sym_LF, + ACTIONS(2951), 1, + sym_preproc_arg, + [28153] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2961), 2, + ACTIONS(2953), 2, anon_sym_DOT_DOT_DOT, sym_identifier, - [51346] = 2, - ACTIONS(2684), 1, + [28161] = 3, + ACTIONS(2700), 1, sym_comment, - ACTIONS(2963), 2, + ACTIONS(2955), 1, anon_sym_LF, + ACTIONS(2957), 1, sym_preproc_arg, - [51354] = 3, - ACTIONS(2684), 1, + [28171] = 3, + ACTIONS(2700), 1, sym_comment, - ACTIONS(2965), 1, + ACTIONS(2959), 1, anon_sym_LF, - ACTIONS(2967), 1, + ACTIONS(2961), 1, sym_preproc_arg, - [51364] = 3, - ACTIONS(2684), 1, + [28181] = 3, + ACTIONS(2700), 1, sym_comment, - ACTIONS(2969), 1, + ACTIONS(2963), 1, anon_sym_LF, - ACTIONS(2971), 1, + ACTIONS(2965), 1, sym_preproc_arg, - [51374] = 2, + [28191] = 3, + ACTIONS(2700), 1, + sym_comment, + ACTIONS(2967), 1, + anon_sym_LF, + ACTIONS(2969), 1, + sym_preproc_arg, + [28201] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2931), 1, + anon_sym_LPAREN2, + STATE(1040), 1, + sym_parenthesized_expression, + [28211] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2855), 2, + ACTIONS(2190), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [51382] = 3, - ACTIONS(2684), 1, + anon_sym_SEMI, + [28219] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2973), 1, + ACTIONS(29), 1, + anon_sym_LBRACE, + STATE(195), 1, + sym_compound_statement, + [28229] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2917), 1, + anon_sym_LPAREN2, + STATE(126), 1, + sym_parenthesized_expression, + [28239] = 3, + ACTIONS(2700), 1, + sym_comment, + ACTIONS(2971), 1, anon_sym_LF, + ACTIONS(2973), 1, + sym_preproc_arg, + [28249] = 3, + ACTIONS(2700), 1, + sym_comment, ACTIONS(2975), 1, + anon_sym_LF, + ACTIONS(2977), 1, sym_preproc_arg, - [51392] = 3, + [28259] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2158), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [28267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(436), 1, + ACTIONS(606), 1, anon_sym_LBRACE, - STATE(249), 1, + STATE(234), 1, sym_compound_statement, - [51402] = 3, - ACTIONS(2684), 1, + [28277] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(2977), 1, + ACTIONS(2622), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [28285] = 2, + ACTIONS(2700), 1, + sym_comment, + ACTIONS(2979), 2, anon_sym_LF, - ACTIONS(2979), 1, sym_preproc_arg, - [51412] = 3, - ACTIONS(2684), 1, + [28293] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2917), 1, + anon_sym_LPAREN2, + STATE(97), 1, + sym_parenthesized_expression, + [28303] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1662), 1, + anon_sym_LPAREN2, + STATE(1008), 1, + sym_argument_list, + [28313] = 3, + ACTIONS(2700), 1, sym_comment, ACTIONS(2981), 1, anon_sym_LF, ACTIONS(2983), 1, sym_preproc_arg, - [51422] = 3, - ACTIONS(2684), 1, + [28323] = 3, + ACTIONS(2700), 1, sym_comment, ACTIONS(2985), 1, anon_sym_LF, ACTIONS(2987), 1, sym_preproc_arg, - [51432] = 3, + [28333] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2862), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [28341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2919), 1, + ACTIONS(2917), 1, anon_sym_LPAREN2, - STATE(77), 1, + STATE(125), 1, sym_parenthesized_expression, - [51442] = 2, + [28351] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2159), 1, + ACTIONS(2126), 1, anon_sym_RPAREN, - [51449] = 2, + [28358] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2989), 1, - aux_sym_preproc_if_token2, - [51456] = 2, + sym_identifier, + [28365] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2672), 1, + ACTIONS(2991), 1, anon_sym_SEMI, - [51463] = 2, + [28372] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2129), 1, + ACTIONS(2200), 1, anon_sym_RPAREN, - [51470] = 2, + [28379] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2991), 1, - sym_identifier, - [51477] = 2, + ACTIONS(2120), 1, + anon_sym_RBRACE, + [28386] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2187), 1, + ACTIONS(2196), 1, anon_sym_RPAREN, - [51484] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2109), 1, - anon_sym_RBRACE, - [51491] = 2, + [28393] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2993), 1, - aux_sym_preproc_if_token2, - [51498] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2995), 1, - aux_sym_preproc_if_token2, - [51505] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2997), 1, - anon_sym_SEMI, - [51512] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2999), 1, sym_identifier, - [51519] = 2, + [28400] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2173), 1, + ACTIONS(2204), 1, anon_sym_RPAREN, - [51526] = 2, + [28407] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2169), 1, - anon_sym_RPAREN, - [51533] = 2, + ACTIONS(2995), 1, + anon_sym_COLON, + [28414] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2189), 1, + ACTIONS(2198), 1, anon_sym_RPAREN, - [51540] = 2, + [28421] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2157), 1, - anon_sym_RPAREN, - [51547] = 2, + ACTIONS(2997), 1, + anon_sym_SQUOTE, + [28428] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2999), 1, + anon_sym_COLON, + [28435] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3001), 1, - anon_sym_SQUOTE, - [51554] = 2, + anon_sym_SEMI, + [28442] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3003), 1, - anon_sym_COLON, - [51561] = 2, + anon_sym_SEMI, + [28449] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3005), 1, anon_sym_SEMI, - [51568] = 2, + [28456] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3007), 1, + anon_sym_RPAREN, + [28463] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2188), 1, anon_sym_SEMI, - [51575] = 2, + [28470] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3009), 1, - anon_sym_SEMI, - [51582] = 2, + anon_sym_while, + [28477] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2141), 1, + ACTIONS(2184), 1, anon_sym_SEMI, - [51589] = 2, + [28484] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(2835), 1, + anon_sym_RBRACE, + [28491] = 2, + ACTIONS(2700), 1, + sym_comment, ACTIONS(3011), 1, - anon_sym_while, - [51596] = 2, + anon_sym_LF, + [28498] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2153), 1, - anon_sym_SEMI, - [51603] = 2, - ACTIONS(2684), 1, + ACTIONS(2134), 1, + anon_sym_RPAREN, + [28505] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3013), 1, - anon_sym_LF, - [51610] = 2, - ACTIONS(2684), 1, + ACTIONS(2136), 1, + anon_sym_RPAREN, + [28512] = 2, + ACTIONS(2700), 1, sym_comment, - ACTIONS(3015), 1, + ACTIONS(3013), 1, sym_preproc_arg, - [51617] = 2, + [28519] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3017), 1, + ACTIONS(3015), 1, aux_sym_preproc_if_token2, - [51624] = 2, + [28526] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3019), 1, + ACTIONS(3017), 1, aux_sym_preproc_if_token2, - [51631] = 2, + [28533] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2119), 1, + ACTIONS(2164), 1, anon_sym_SEMI, - [51638] = 2, + [28540] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3021), 1, + ACTIONS(3019), 1, anon_sym_SEMI, - [51645] = 2, + [28547] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2140), 1, + anon_sym_RPAREN, + [28554] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2676), 1, + ACTIONS(3021), 1, anon_sym_SEMI, - [51652] = 2, - ACTIONS(2684), 1, + [28561] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(3023), 1, - anon_sym_LF, - [51659] = 2, - ACTIONS(3), 1, + aux_sym_preproc_if_token2, + [28568] = 2, + ACTIONS(2700), 1, sym_comment, ACTIONS(3025), 1, - aux_sym_preproc_if_token2, - [51666] = 2, + anon_sym_LF, + [28575] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3027), 1, aux_sym_preproc_if_token2, - [51673] = 2, + [28582] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2674), 1, + anon_sym_SEMI, + [28589] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3029), 1, aux_sym_preproc_if_token2, - [51680] = 2, + [28596] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3031), 1, aux_sym_preproc_if_token2, - [51687] = 2, - ACTIONS(2684), 1, + [28603] = 2, + ACTIONS(2700), 1, sym_comment, ACTIONS(3033), 1, - anon_sym_LF, - [51694] = 2, + sym_preproc_arg, + [28610] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3035), 1, - aux_sym_preproc_if_token2, - [51701] = 2, - ACTIONS(3), 1, + sym_identifier, + [28617] = 2, + ACTIONS(2700), 1, sym_comment, ACTIONS(3037), 1, - aux_sym_preproc_if_token2, - [51708] = 2, - ACTIONS(2684), 1, + anon_sym_LF, + [28624] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(3039), 1, - anon_sym_LF, - [51715] = 2, + aux_sym_preproc_if_token2, + [28631] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3041), 1, - anon_sym_SEMI, - [51722] = 2, + aux_sym_preproc_if_token2, + [28638] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3043), 1, anon_sym_SEMI, - [51729] = 2, + [28645] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2146), 1, + anon_sym_RPAREN, + [28652] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2128), 1, + anon_sym_RPAREN, + [28659] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3045), 1, anon_sym_SEMI, - [51736] = 2, + [28666] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3047), 1, anon_sym_RPAREN, - [51743] = 2, + [28673] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2125), 1, + ACTIONS(2132), 1, anon_sym_RPAREN, - [51750] = 2, - ACTIONS(2684), 1, + [28680] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(3049), 1, - sym_preproc_arg, - [51757] = 2, + anon_sym_SEMI, + [28687] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3051), 1, - aux_sym_preproc_if_token2, - [51764] = 2, + ACTIONS(2678), 1, + anon_sym_SEMI, + [28694] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2127), 1, + ACTIONS(2138), 1, anon_sym_RPAREN, - [51771] = 2, + [28701] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3053), 1, - anon_sym_SEMI, - [51778] = 2, + ACTIONS(2144), 1, + anon_sym_RPAREN, + [28708] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3055), 1, + ACTIONS(3051), 1, aux_sym_preproc_if_token2, - [51785] = 2, + [28715] = 2, + ACTIONS(2700), 1, + sym_comment, + ACTIONS(3053), 1, + anon_sym_LF, + [28722] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2133), 1, + ACTIONS(2148), 1, anon_sym_RPAREN, - [51792] = 2, - ACTIONS(2684), 1, - sym_comment, - ACTIONS(3057), 1, - anon_sym_LF, - [51799] = 2, + [28729] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3059), 1, + ACTIONS(3055), 1, aux_sym_preproc_if_token2, - [51806] = 2, - ACTIONS(2684), 1, - sym_comment, - ACTIONS(3061), 1, - anon_sym_LF, - [51813] = 2, + [28736] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2139), 1, + ACTIONS(2152), 1, anon_sym_RPAREN, - [51820] = 2, + [28743] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3063), 1, + ACTIONS(3057), 1, aux_sym_preproc_if_token2, - [51827] = 2, + [28750] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2143), 1, + ACTIONS(2160), 1, anon_sym_RPAREN, - [51834] = 2, + [28757] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3065), 1, - aux_sym_preproc_if_token2, - [51841] = 2, + ACTIONS(2162), 1, + anon_sym_SEMI, + [28764] = 2, + ACTIONS(2700), 1, + sym_comment, + ACTIONS(3059), 1, + anon_sym_LF, + [28771] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2149), 1, + ACTIONS(2166), 1, anon_sym_RPAREN, - [51848] = 2, + [28778] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3061), 1, + aux_sym_preproc_if_token2, + [28785] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2151), 1, + ACTIONS(3063), 1, anon_sym_SEMI, - [51855] = 2, + [28792] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(3065), 1, + anon_sym_SEMI, + [28799] = 2, + ACTIONS(2700), 1, + sym_comment, ACTIONS(3067), 1, - aux_sym_preproc_if_token2, - [51862] = 2, + anon_sym_LF, + [28806] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2155), 1, - anon_sym_RPAREN, - [51869] = 2, - ACTIONS(2684), 1, + ACTIONS(2156), 1, + anon_sym_SEMI, + [28813] = 2, + ACTIONS(2700), 1, sym_comment, ACTIONS(3069), 1, anon_sym_LF, - [51876] = 2, + [28820] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3071), 1, anon_sym_SEMI, - [51883] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2117), 1, - anon_sym_SEMI, - [51890] = 2, - ACTIONS(2684), 1, + [28827] = 2, + ACTIONS(2700), 1, sym_comment, ACTIONS(3073), 1, anon_sym_LF, - [51897] = 2, + [28834] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2195), 1, - anon_sym_RPAREN, - [51904] = 2, - ACTIONS(2684), 1, - sym_comment, ACTIONS(3075), 1, - anon_sym_LF, - [51911] = 2, - ACTIONS(2684), 1, + anon_sym_SEMI, + [28841] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(3077), 1, - anon_sym_LF, - [51918] = 2, - ACTIONS(2684), 1, + anon_sym_RPAREN, + [28848] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(3079), 1, - anon_sym_LF, - [51925] = 2, - ACTIONS(3), 1, + aux_sym_preproc_if_token2, + [28855] = 2, + ACTIONS(2700), 1, sym_comment, ACTIONS(3081), 1, - aux_sym_preproc_if_token2, - [51932] = 2, + anon_sym_LF, + [28862] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3083), 1, - anon_sym_RPAREN, - [51939] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2163), 1, - anon_sym_SEMI, - [51946] = 2, - ACTIONS(2684), 1, + aux_sym_preproc_if_token2, + [28869] = 2, + ACTIONS(2700), 1, sym_comment, ACTIONS(3085), 1, anon_sym_LF, - [51953] = 2, + [28876] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3087), 1, - anon_sym_SEMI, - [51960] = 2, - ACTIONS(2684), 1, + ACTIONS(2154), 1, + anon_sym_RPAREN, + [28883] = 2, + ACTIONS(2700), 1, sym_comment, - ACTIONS(3089), 1, + ACTIONS(3087), 1, anon_sym_LF, - [51967] = 2, + [28890] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(3089), 1, + sym_identifier, + [28897] = 2, + ACTIONS(2700), 1, + sym_comment, ACTIONS(3091), 1, - anon_sym_SEMI, - [51974] = 2, - ACTIONS(2684), 1, + anon_sym_LF, + [28904] = 2, + ACTIONS(2700), 1, sym_comment, ACTIONS(3093), 1, anon_sym_LF, - [51981] = 2, - ACTIONS(3), 1, + [28911] = 2, + ACTIONS(2700), 1, sym_comment, ACTIONS(3095), 1, - anon_sym_COLON, - [51988] = 2, + anon_sym_LF, + [28918] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2161), 1, + ACTIONS(2186), 1, anon_sym_RPAREN, - [51995] = 2, - ACTIONS(2684), 1, + [28925] = 2, + ACTIONS(2700), 1, sym_comment, ACTIONS(3097), 1, anon_sym_LF, - [52002] = 2, - ACTIONS(2684), 1, - sym_comment, - ACTIONS(3099), 1, - anon_sym_LF, - [52009] = 2, + [28932] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2848), 1, - anon_sym_RBRACE, - [52016] = 2, - ACTIONS(2684), 1, + ACTIONS(3099), 1, + aux_sym_preproc_if_token2, + [28939] = 2, + ACTIONS(2700), 1, sym_comment, ACTIONS(3101), 1, - anon_sym_LF, - [52023] = 2, + sym_preproc_arg, + [28946] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3103), 1, sym_identifier, - [52030] = 2, - ACTIONS(2684), 1, - sym_comment, - ACTIONS(3105), 1, - sym_preproc_arg, - [52037] = 2, + [28953] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3107), 1, - sym_identifier, - [52044] = 2, + ACTIONS(3105), 1, + anon_sym_RPAREN, + [28960] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3109), 1, + ACTIONS(2124), 1, anon_sym_SEMI, - [52051] = 2, + [28967] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2113), 1, + ACTIONS(2122), 1, anon_sym_RPAREN, - [52058] = 2, + [28974] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2111), 1, - anon_sym_RPAREN, - [52065] = 2, + ACTIONS(3107), 1, + ts_builtin_sym_end, + [28981] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3109), 1, + sym_identifier, + [28988] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3111), 1, - ts_builtin_sym_end, - [52072] = 2, + anon_sym_RPAREN, + [28995] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3113), 1, - sym_identifier, - [52079] = 2, + aux_sym_preproc_if_token2, + [29002] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3115), 1, + aux_sym_preproc_if_token2, + [29009] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2664), 1, anon_sym_SEMI, - [52086] = 2, + [29016] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3117), 1, aux_sym_preproc_if_token2, - [52093] = 2, - ACTIONS(3), 1, + [29023] = 2, + ACTIONS(2700), 1, sym_comment, ACTIONS(3119), 1, - aux_sym_preproc_if_token2, - [52100] = 2, - ACTIONS(2684), 1, - sym_comment, - ACTIONS(3121), 1, sym_preproc_arg, - [52107] = 2, + [29030] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2145), 1, - anon_sym_RPAREN, - [52114] = 2, - ACTIONS(2684), 1, + ACTIONS(3121), 1, + sym_identifier, + [29037] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(3123), 1, - sym_preproc_arg, - [52121] = 2, + aux_sym_preproc_if_token2, + [29044] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3125), 1, sym_identifier, - [52128] = 2, + [29051] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3127), 1, - sym_identifier, - [52135] = 2, - ACTIONS(3), 1, + anon_sym_SEMI, + [29058] = 2, + ACTIONS(2700), 1, sym_comment, ACTIONS(3129), 1, - sym_identifier, - [52142] = 2, + anon_sym_LF, + [29065] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3131), 1, anon_sym_SEMI, - [52149] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2115), 1, - anon_sym_RPAREN, - [52156] = 2, + [29072] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2654), 1, + ACTIONS(3133), 1, anon_sym_SEMI, - [52163] = 2, + [29079] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3133), 1, + ACTIONS(2172), 1, anon_sym_SEMI, - [52170] = 2, + [29086] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3135), 1, - aux_sym_preproc_if_token2, - [52177] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3137), 1, sym_identifier, - [52184] = 2, - ACTIONS(2684), 1, + [29093] = 2, + ACTIONS(2700), 1, sym_comment, - ACTIONS(3139), 1, + ACTIONS(3137), 1, sym_preproc_arg, - [52191] = 2, + [29100] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3141), 1, + ACTIONS(3139), 1, sym_identifier, - [52198] = 2, + [29107] = 2, + ACTIONS(2700), 1, + sym_comment, + ACTIONS(3141), 1, + anon_sym_LF, + [29114] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3143), 1, - aux_sym_preproc_if_token2, - [52205] = 2, + anon_sym_SEMI, + [29121] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3145), 1, - anon_sym_SEMI, - [52212] = 2, + anon_sym_LPAREN2, + [29128] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3147), 1, - anon_sym_LPAREN2, - [52219] = 2, + sym_identifier, + [29135] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3149), 1, - sym_identifier, - [52226] = 2, + anon_sym_SEMI, + [29142] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3151), 1, - anon_sym_SEMI, - [52233] = 2, + aux_sym_preproc_if_token2, + [29149] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3153), 1, aux_sym_preproc_if_token2, - [52240] = 2, - ACTIONS(3), 1, + [29156] = 2, + ACTIONS(2700), 1, sym_comment, ACTIONS(3155), 1, - aux_sym_preproc_if_token2, - [52247] = 2, - ACTIONS(2684), 1, - sym_comment, - ACTIONS(3157), 1, sym_preproc_arg, - [52254] = 2, + [29163] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3159), 1, + ACTIONS(3157), 1, sym_identifier, - [52261] = 2, - ACTIONS(3), 1, + [29170] = 2, + ACTIONS(2700), 1, sym_comment, - ACTIONS(2121), 1, - anon_sym_SEMI, - [52268] = 2, + ACTIONS(3159), 1, + sym_preproc_arg, + [29177] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3161), 1, - anon_sym_RPAREN, - [52275] = 2, + aux_sym_preproc_if_token2, + [29184] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3163), 1, anon_sym_COLON, - [52282] = 2, + [29191] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3165), 1, aux_sym_preproc_if_token2, - [52289] = 2, + [29198] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3167), 1, - aux_sym_preproc_if_token2, - [52296] = 2, - ACTIONS(2684), 1, + anon_sym_RPAREN, + [29205] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(3169), 1, - anon_sym_LF, - [52303] = 2, + aux_sym_preproc_if_token2, + [29212] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3171), 1, + ACTIONS(2180), 1, anon_sym_RPAREN, - [52310] = 2, + [29219] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3173), 1, + ACTIONS(3171), 1, sym_identifier, - [52317] = 2, - ACTIONS(2684), 1, + [29226] = 2, + ACTIONS(2700), 1, sym_comment, - ACTIONS(3175), 1, + ACTIONS(3173), 1, sym_preproc_arg, - [52324] = 2, + [29233] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3177), 1, + ACTIONS(3175), 1, sym_identifier, - [52331] = 2, + [29240] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3179), 1, + ACTIONS(3177), 1, anon_sym_SEMI, - [52338] = 2, - ACTIONS(3), 1, + [29247] = 2, + ACTIONS(2700), 1, sym_comment, - ACTIONS(3181), 1, - anon_sym_RPAREN, - [52345] = 2, + ACTIONS(3179), 1, + anon_sym_LF, + [29254] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3183), 1, + ACTIONS(3181), 1, aux_sym_preproc_if_token2, - [52352] = 2, + [29261] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3185), 1, + ACTIONS(3183), 1, sym_identifier, - [52359] = 2, - ACTIONS(3), 1, + [29268] = 2, + ACTIONS(2700), 1, sym_comment, - ACTIONS(3187), 1, - aux_sym_preproc_if_token2, - [52366] = 2, + ACTIONS(3185), 1, + anon_sym_LF, + [29275] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2179), 1, + ACTIONS(2176), 1, anon_sym_RPAREN, - [52373] = 2, + [29282] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2171), 1, + ACTIONS(2174), 1, anon_sym_RPAREN, - [52380] = 2, - ACTIONS(2684), 1, + [29289] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3189), 1, - anon_sym_LF, - [52387] = 2, + ACTIONS(3187), 1, + aux_sym_preproc_if_token2, + [29296] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3191), 1, + ACTIONS(2206), 1, anon_sym_SEMI, - [52394] = 2, + [29303] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2123), 1, - anon_sym_SEMI, - [52401] = 2, + ACTIONS(3189), 1, + aux_sym_preproc_if_token2, + [29310] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2165), 1, + ACTIONS(2170), 1, anon_sym_RPAREN, - [52408] = 2, + [29317] = 2, + ACTIONS(2700), 1, + sym_comment, + ACTIONS(3191), 1, + anon_sym_LF, + [29324] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3193), 1, - anon_sym_RPAREN, - [52415] = 2, + aux_sym_preproc_if_token2, + [29331] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2131), 1, - anon_sym_RPAREN, - [52422] = 2, - ACTIONS(2684), 1, - sym_comment, ACTIONS(3195), 1, - anon_sym_LF, - [52429] = 2, + aux_sym_preproc_if_token2, + [29338] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3197), 1, sym_identifier, - [52436] = 2, + [29345] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3199), 1, sym_identifier, - [52443] = 2, + [29352] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3201), 1, sym_identifier, - [52450] = 2, + [29359] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2177), 1, + ACTIONS(3203), 1, anon_sym_SEMI, - [52457] = 2, + [29366] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2167), 1, + ACTIONS(2142), 1, anon_sym_RPAREN, - [52464] = 2, + [29373] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3203), 1, - anon_sym_while, - [52471] = 2, - ACTIONS(2684), 1, - sym_comment, ACTIONS(3205), 1, - anon_sym_LF, - [52478] = 2, + anon_sym_while, + [29380] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3207), 1, - aux_sym_preproc_if_token2, - [52485] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, anon_sym_SEMI, - [52492] = 2, - ACTIONS(3), 1, + [29387] = 2, + ACTIONS(2700), 1, sym_comment, ACTIONS(3209), 1, - aux_sym_preproc_if_token2, - [52499] = 2, + anon_sym_LF, + [29394] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2208), 1, + anon_sym_SEMI, + [29401] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3211), 1, aux_sym_preproc_if_token2, - [52506] = 2, + [29408] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3213), 1, - anon_sym_while, - [52513] = 2, + anon_sym_SEMI, + [29415] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3215), 1, - anon_sym_LPAREN2, - [52520] = 2, + anon_sym_while, + [29422] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3217), 1, - anon_sym_SEMI, - [52527] = 2, + anon_sym_LPAREN2, + [29429] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3219), 1, + anon_sym_COLON, + [29436] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2199), 1, + ACTIONS(2210), 1, anon_sym_SEMI, - [52534] = 2, + [29443] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2137), 1, + ACTIONS(2130), 1, anon_sym_RPAREN, - [52541] = 2, + [29450] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3219), 1, + ACTIONS(3221), 1, aux_sym_preproc_if_token2, - [52548] = 2, + [29457] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3221), 1, + ACTIONS(3223), 1, anon_sym_while, - [52555] = 2, + [29464] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3223), 1, + ACTIONS(2168), 1, anon_sym_SEMI, - [52562] = 2, + [29471] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3225), 1, - anon_sym_COLON, - [52569] = 2, + aux_sym_preproc_if_token2, + [29478] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, + ACTIONS(2178), 1, anon_sym_SEMI, - [52576] = 2, + [29485] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3227), 1, sym_identifier, - [52583] = 2, + [29492] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3229), 1, anon_sym_LPAREN2, - [52590] = 2, - ACTIONS(2684), 1, + [29499] = 2, + ACTIONS(2700), 1, sym_comment, ACTIONS(3231), 1, sym_preproc_arg, - [52597] = 2, + [29506] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3233), 1, anon_sym_LPAREN2, - [52604] = 2, + [29513] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3235), 1, sym_identifier, - [52611] = 2, + [29520] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3237), 1, @@ -56429,1099 +56922,806 @@ static uint16_t ts_small_parse_table[] = { }; static uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(68)] = 0, - [SMALL_STATE(69)] = 125, - [SMALL_STATE(70)] = 250, - [SMALL_STATE(71)] = 375, - [SMALL_STATE(72)] = 500, - [SMALL_STATE(73)] = 625, - [SMALL_STATE(74)] = 750, - [SMALL_STATE(75)] = 875, - [SMALL_STATE(76)] = 1000, - [SMALL_STATE(77)] = 1125, - [SMALL_STATE(78)] = 1250, - [SMALL_STATE(79)] = 1375, - [SMALL_STATE(80)] = 1500, - [SMALL_STATE(81)] = 1625, - [SMALL_STATE(82)] = 1750, - [SMALL_STATE(83)] = 1875, - [SMALL_STATE(84)] = 2000, - [SMALL_STATE(85)] = 2125, - [SMALL_STATE(86)] = 2250, - [SMALL_STATE(87)] = 2375, - [SMALL_STATE(88)] = 2500, - [SMALL_STATE(89)] = 2625, - [SMALL_STATE(90)] = 2750, - [SMALL_STATE(91)] = 2875, - [SMALL_STATE(92)] = 3000, - [SMALL_STATE(93)] = 3125, - [SMALL_STATE(94)] = 3250, - [SMALL_STATE(95)] = 3375, - [SMALL_STATE(96)] = 3500, - [SMALL_STATE(97)] = 3625, - [SMALL_STATE(98)] = 3750, - [SMALL_STATE(99)] = 3875, - [SMALL_STATE(100)] = 4000, - [SMALL_STATE(101)] = 4125, - [SMALL_STATE(102)] = 4250, - [SMALL_STATE(103)] = 4375, - [SMALL_STATE(104)] = 4500, - [SMALL_STATE(105)] = 4625, - [SMALL_STATE(106)] = 4750, - [SMALL_STATE(107)] = 4875, - [SMALL_STATE(108)] = 5000, - [SMALL_STATE(109)] = 5125, - [SMALL_STATE(110)] = 5250, - [SMALL_STATE(111)] = 5375, - [SMALL_STATE(112)] = 5500, - [SMALL_STATE(113)] = 5625, - [SMALL_STATE(114)] = 5750, - [SMALL_STATE(115)] = 5875, - [SMALL_STATE(116)] = 6000, - [SMALL_STATE(117)] = 6125, - [SMALL_STATE(118)] = 6250, - [SMALL_STATE(119)] = 6375, - [SMALL_STATE(120)] = 6500, - [SMALL_STATE(121)] = 6625, - [SMALL_STATE(122)] = 6750, - [SMALL_STATE(123)] = 6875, - [SMALL_STATE(124)] = 7000, - [SMALL_STATE(125)] = 7125, - [SMALL_STATE(126)] = 7250, - [SMALL_STATE(127)] = 7375, - [SMALL_STATE(128)] = 7500, - [SMALL_STATE(129)] = 7625, - [SMALL_STATE(130)] = 7750, - [SMALL_STATE(131)] = 7875, - [SMALL_STATE(132)] = 8000, - [SMALL_STATE(133)] = 8125, - [SMALL_STATE(134)] = 8250, - [SMALL_STATE(135)] = 8375, - [SMALL_STATE(136)] = 8500, - [SMALL_STATE(137)] = 8604, - [SMALL_STATE(138)] = 8673, - [SMALL_STATE(139)] = 8744, - [SMALL_STATE(140)] = 8813, - [SMALL_STATE(141)] = 8882, - [SMALL_STATE(142)] = 8951, - [SMALL_STATE(143)] = 9020, - [SMALL_STATE(144)] = 9089, - [SMALL_STATE(145)] = 9158, - [SMALL_STATE(146)] = 9227, - [SMALL_STATE(147)] = 9296, - [SMALL_STATE(148)] = 9365, - [SMALL_STATE(149)] = 9434, - [SMALL_STATE(150)] = 9503, - [SMALL_STATE(151)] = 9572, - [SMALL_STATE(152)] = 9641, - [SMALL_STATE(153)] = 9710, - [SMALL_STATE(154)] = 9779, - [SMALL_STATE(155)] = 9848, - [SMALL_STATE(156)] = 9917, - [SMALL_STATE(157)] = 9986, - [SMALL_STATE(158)] = 10055, - [SMALL_STATE(159)] = 10124, - [SMALL_STATE(160)] = 10193, - [SMALL_STATE(161)] = 10262, - [SMALL_STATE(162)] = 10331, - [SMALL_STATE(163)] = 10400, - [SMALL_STATE(164)] = 10469, - [SMALL_STATE(165)] = 10538, - [SMALL_STATE(166)] = 10607, - [SMALL_STATE(167)] = 10676, - [SMALL_STATE(168)] = 10745, - [SMALL_STATE(169)] = 10814, - [SMALL_STATE(170)] = 10883, - [SMALL_STATE(171)] = 10951, - [SMALL_STATE(172)] = 11019, - [SMALL_STATE(173)] = 11087, - [SMALL_STATE(174)] = 11155, - [SMALL_STATE(175)] = 11223, - [SMALL_STATE(176)] = 11291, - [SMALL_STATE(177)] = 11359, - [SMALL_STATE(178)] = 11427, - [SMALL_STATE(179)] = 11495, - [SMALL_STATE(180)] = 11563, - [SMALL_STATE(181)] = 11631, - [SMALL_STATE(182)] = 11699, - [SMALL_STATE(183)] = 11767, - [SMALL_STATE(184)] = 11835, - [SMALL_STATE(185)] = 11903, - [SMALL_STATE(186)] = 11971, - [SMALL_STATE(187)] = 12039, - [SMALL_STATE(188)] = 12107, - [SMALL_STATE(189)] = 12175, - [SMALL_STATE(190)] = 12243, - [SMALL_STATE(191)] = 12311, - [SMALL_STATE(192)] = 12379, - [SMALL_STATE(193)] = 12446, - [SMALL_STATE(194)] = 12513, - [SMALL_STATE(195)] = 12580, - [SMALL_STATE(196)] = 12647, - [SMALL_STATE(197)] = 12760, - [SMALL_STATE(198)] = 12827, - [SMALL_STATE(199)] = 12894, - [SMALL_STATE(200)] = 12961, - [SMALL_STATE(201)] = 13028, - [SMALL_STATE(202)] = 13095, - [SMALL_STATE(203)] = 13162, - [SMALL_STATE(204)] = 13229, - [SMALL_STATE(205)] = 13296, - [SMALL_STATE(206)] = 13363, - [SMALL_STATE(207)] = 13430, - [SMALL_STATE(208)] = 13497, - [SMALL_STATE(209)] = 13566, - [SMALL_STATE(210)] = 13633, - [SMALL_STATE(211)] = 13700, - [SMALL_STATE(212)] = 13767, - [SMALL_STATE(213)] = 13834, - [SMALL_STATE(214)] = 13901, - [SMALL_STATE(215)] = 13968, - [SMALL_STATE(216)] = 14081, - [SMALL_STATE(217)] = 14148, - [SMALL_STATE(218)] = 14215, - [SMALL_STATE(219)] = 14282, - [SMALL_STATE(220)] = 14395, - [SMALL_STATE(221)] = 14462, - [SMALL_STATE(222)] = 14529, - [SMALL_STATE(223)] = 14596, - [SMALL_STATE(224)] = 14663, - [SMALL_STATE(225)] = 14730, - [SMALL_STATE(226)] = 14797, - [SMALL_STATE(227)] = 14864, - [SMALL_STATE(228)] = 14931, - [SMALL_STATE(229)] = 14998, - [SMALL_STATE(230)] = 15065, - [SMALL_STATE(231)] = 15132, - [SMALL_STATE(232)] = 15199, - [SMALL_STATE(233)] = 15266, - [SMALL_STATE(234)] = 15333, - [SMALL_STATE(235)] = 15400, - [SMALL_STATE(236)] = 15467, - [SMALL_STATE(237)] = 15534, - [SMALL_STATE(238)] = 15601, - [SMALL_STATE(239)] = 15668, - [SMALL_STATE(240)] = 15735, - [SMALL_STATE(241)] = 15802, - [SMALL_STATE(242)] = 15869, - [SMALL_STATE(243)] = 15936, - [SMALL_STATE(244)] = 16003, - [SMALL_STATE(245)] = 16070, - [SMALL_STATE(246)] = 16137, - [SMALL_STATE(247)] = 16204, - [SMALL_STATE(248)] = 16271, - [SMALL_STATE(249)] = 16340, - [SMALL_STATE(250)] = 16407, - [SMALL_STATE(251)] = 16474, - [SMALL_STATE(252)] = 16541, - [SMALL_STATE(253)] = 16608, - [SMALL_STATE(254)] = 16675, - [SMALL_STATE(255)] = 16742, - [SMALL_STATE(256)] = 16809, - [SMALL_STATE(257)] = 16876, - [SMALL_STATE(258)] = 16943, - [SMALL_STATE(259)] = 17010, - [SMALL_STATE(260)] = 17077, - [SMALL_STATE(261)] = 17144, - [SMALL_STATE(262)] = 17211, - [SMALL_STATE(263)] = 17278, - [SMALL_STATE(264)] = 17345, - [SMALL_STATE(265)] = 17412, - [SMALL_STATE(266)] = 17479, - [SMALL_STATE(267)] = 17546, - [SMALL_STATE(268)] = 17613, - [SMALL_STATE(269)] = 17680, - [SMALL_STATE(270)] = 17747, - [SMALL_STATE(271)] = 17814, - [SMALL_STATE(272)] = 17881, - [SMALL_STATE(273)] = 17948, - [SMALL_STATE(274)] = 18015, - [SMALL_STATE(275)] = 18082, - [SMALL_STATE(276)] = 18149, - [SMALL_STATE(277)] = 18216, - [SMALL_STATE(278)] = 18329, - [SMALL_STATE(279)] = 18396, - [SMALL_STATE(280)] = 18463, - [SMALL_STATE(281)] = 18530, - [SMALL_STATE(282)] = 18597, - [SMALL_STATE(283)] = 18664, - [SMALL_STATE(284)] = 18731, - [SMALL_STATE(285)] = 18798, - [SMALL_STATE(286)] = 18865, - [SMALL_STATE(287)] = 18934, - [SMALL_STATE(288)] = 19001, - [SMALL_STATE(289)] = 19068, - [SMALL_STATE(290)] = 19135, - [SMALL_STATE(291)] = 19202, - [SMALL_STATE(292)] = 19269, - [SMALL_STATE(293)] = 19336, - [SMALL_STATE(294)] = 19403, - [SMALL_STATE(295)] = 19470, - [SMALL_STATE(296)] = 19536, - [SMALL_STATE(297)] = 19602, - [SMALL_STATE(298)] = 19668, - [SMALL_STATE(299)] = 19734, - [SMALL_STATE(300)] = 19800, - [SMALL_STATE(301)] = 19866, - [SMALL_STATE(302)] = 19932, - [SMALL_STATE(303)] = 19998, - [SMALL_STATE(304)] = 20064, - [SMALL_STATE(305)] = 20130, - [SMALL_STATE(306)] = 20196, - [SMALL_STATE(307)] = 20262, - [SMALL_STATE(308)] = 20328, - [SMALL_STATE(309)] = 20394, - [SMALL_STATE(310)] = 20460, - [SMALL_STATE(311)] = 20526, - [SMALL_STATE(312)] = 20592, - [SMALL_STATE(313)] = 20658, - [SMALL_STATE(314)] = 20724, - [SMALL_STATE(315)] = 20790, - [SMALL_STATE(316)] = 20856, - [SMALL_STATE(317)] = 20922, - [SMALL_STATE(318)] = 20988, - [SMALL_STATE(319)] = 21054, - [SMALL_STATE(320)] = 21120, - [SMALL_STATE(321)] = 21186, - [SMALL_STATE(322)] = 21252, - [SMALL_STATE(323)] = 21318, - [SMALL_STATE(324)] = 21384, - [SMALL_STATE(325)] = 21450, - [SMALL_STATE(326)] = 21516, - [SMALL_STATE(327)] = 21582, - [SMALL_STATE(328)] = 21648, - [SMALL_STATE(329)] = 21714, - [SMALL_STATE(330)] = 21780, - [SMALL_STATE(331)] = 21846, - [SMALL_STATE(332)] = 21912, - [SMALL_STATE(333)] = 21978, - [SMALL_STATE(334)] = 22044, - [SMALL_STATE(335)] = 22110, - [SMALL_STATE(336)] = 22176, - [SMALL_STATE(337)] = 22242, - [SMALL_STATE(338)] = 22308, - [SMALL_STATE(339)] = 22374, - [SMALL_STATE(340)] = 22440, - [SMALL_STATE(341)] = 22506, - [SMALL_STATE(342)] = 22572, - [SMALL_STATE(343)] = 22638, - [SMALL_STATE(344)] = 22704, - [SMALL_STATE(345)] = 22770, - [SMALL_STATE(346)] = 22836, - [SMALL_STATE(347)] = 22902, - [SMALL_STATE(348)] = 22968, - [SMALL_STATE(349)] = 23034, - [SMALL_STATE(350)] = 23100, - [SMALL_STATE(351)] = 23166, - [SMALL_STATE(352)] = 23232, - [SMALL_STATE(353)] = 23298, - [SMALL_STATE(354)] = 23364, - [SMALL_STATE(355)] = 23430, - [SMALL_STATE(356)] = 23496, - [SMALL_STATE(357)] = 23562, - [SMALL_STATE(358)] = 23628, - [SMALL_STATE(359)] = 23694, - [SMALL_STATE(360)] = 23760, - [SMALL_STATE(361)] = 23826, - [SMALL_STATE(362)] = 23898, - [SMALL_STATE(363)] = 23970, - [SMALL_STATE(364)] = 24042, - [SMALL_STATE(365)] = 24112, - [SMALL_STATE(366)] = 24184, - [SMALL_STATE(367)] = 24254, - [SMALL_STATE(368)] = 24324, - [SMALL_STATE(369)] = 24394, - [SMALL_STATE(370)] = 24491, - [SMALL_STATE(371)] = 24588, - [SMALL_STATE(372)] = 24685, - [SMALL_STATE(373)] = 24782, - [SMALL_STATE(374)] = 24879, - [SMALL_STATE(375)] = 24976, - [SMALL_STATE(376)] = 25073, - [SMALL_STATE(377)] = 25170, - [SMALL_STATE(378)] = 25267, - [SMALL_STATE(379)] = 25364, - [SMALL_STATE(380)] = 25461, - [SMALL_STATE(381)] = 25558, - [SMALL_STATE(382)] = 25655, - [SMALL_STATE(383)] = 25722, - [SMALL_STATE(384)] = 25819, - [SMALL_STATE(385)] = 25915, - [SMALL_STATE(386)] = 26004, - [SMALL_STATE(387)] = 26062, - [SMALL_STATE(388)] = 26120, - [SMALL_STATE(389)] = 26212, - [SMALL_STATE(390)] = 26270, - [SMALL_STATE(391)] = 26357, - [SMALL_STATE(392)] = 26446, - [SMALL_STATE(393)] = 26533, - [SMALL_STATE(394)] = 26620, - [SMALL_STATE(395)] = 26709, - [SMALL_STATE(396)] = 26796, - [SMALL_STATE(397)] = 26883, - [SMALL_STATE(398)] = 26970, - [SMALL_STATE(399)] = 27022, - [SMALL_STATE(400)] = 27074, - [SMALL_STATE(401)] = 27160, - [SMALL_STATE(402)] = 27249, - [SMALL_STATE(403)] = 27332, - [SMALL_STATE(404)] = 27413, - [SMALL_STATE(405)] = 27476, - [SMALL_STATE(406)] = 27549, - [SMALL_STATE(407)] = 27632, - [SMALL_STATE(408)] = 27715, - [SMALL_STATE(409)] = 27798, - [SMALL_STATE(410)] = 27881, - [SMALL_STATE(411)] = 27960, - [SMALL_STATE(412)] = 28043, - [SMALL_STATE(413)] = 28126, - [SMALL_STATE(414)] = 28187, - [SMALL_STATE(415)] = 28264, - [SMALL_STATE(416)] = 28339, - [SMALL_STATE(417)] = 28422, - [SMALL_STATE(418)] = 28483, - [SMALL_STATE(419)] = 28566, - [SMALL_STATE(420)] = 28637, - [SMALL_STATE(421)] = 28688, - [SMALL_STATE(422)] = 28755, - [SMALL_STATE(423)] = 28838, - [SMALL_STATE(424)] = 28903, - [SMALL_STATE(425)] = 28988, - [SMALL_STATE(426)] = 29049, - [SMALL_STATE(427)] = 29108, - [SMALL_STATE(428)] = 29175, - [SMALL_STATE(429)] = 29236, - [SMALL_STATE(430)] = 29319, - [SMALL_STATE(431)] = 29369, - [SMALL_STATE(432)] = 29419, - [SMALL_STATE(433)] = 29469, - [SMALL_STATE(434)] = 29519, - [SMALL_STATE(435)] = 29569, - [SMALL_STATE(436)] = 29631, - [SMALL_STATE(437)] = 29681, - [SMALL_STATE(438)] = 29731, - [SMALL_STATE(439)] = 29781, - [SMALL_STATE(440)] = 29831, - [SMALL_STATE(441)] = 29885, - [SMALL_STATE(442)] = 29935, - [SMALL_STATE(443)] = 29985, - [SMALL_STATE(444)] = 30035, - [SMALL_STATE(445)] = 30085, - [SMALL_STATE(446)] = 30138, - [SMALL_STATE(447)] = 30191, - [SMALL_STATE(448)] = 30244, - [SMALL_STATE(449)] = 30297, - [SMALL_STATE(450)] = 30371, - [SMALL_STATE(451)] = 30445, - [SMALL_STATE(452)] = 30519, - [SMALL_STATE(453)] = 30593, - [SMALL_STATE(454)] = 30667, - [SMALL_STATE(455)] = 30737, - [SMALL_STATE(456)] = 30811, - [SMALL_STATE(457)] = 30885, - [SMALL_STATE(458)] = 30959, - [SMALL_STATE(459)] = 31033, - [SMALL_STATE(460)] = 31107, - [SMALL_STATE(461)] = 31181, - [SMALL_STATE(462)] = 31255, - [SMALL_STATE(463)] = 31329, - [SMALL_STATE(464)] = 31403, - [SMALL_STATE(465)] = 31477, - [SMALL_STATE(466)] = 31551, - [SMALL_STATE(467)] = 31625, - [SMALL_STATE(468)] = 31699, - [SMALL_STATE(469)] = 31773, - [SMALL_STATE(470)] = 31847, - [SMALL_STATE(471)] = 31921, - [SMALL_STATE(472)] = 31995, - [SMALL_STATE(473)] = 32069, - [SMALL_STATE(474)] = 32143, - [SMALL_STATE(475)] = 32217, - [SMALL_STATE(476)] = 32291, - [SMALL_STATE(477)] = 32365, - [SMALL_STATE(478)] = 32439, - [SMALL_STATE(479)] = 32513, - [SMALL_STATE(480)] = 32587, - [SMALL_STATE(481)] = 32661, - [SMALL_STATE(482)] = 32728, - [SMALL_STATE(483)] = 32799, - [SMALL_STATE(484)] = 32866, - [SMALL_STATE(485)] = 32937, - [SMALL_STATE(486)] = 33004, - [SMALL_STATE(487)] = 33071, - [SMALL_STATE(488)] = 33138, - [SMALL_STATE(489)] = 33209, - [SMALL_STATE(490)] = 33276, - [SMALL_STATE(491)] = 33347, - [SMALL_STATE(492)] = 33418, - [SMALL_STATE(493)] = 33489, - [SMALL_STATE(494)] = 33556, - [SMALL_STATE(495)] = 33627, - [SMALL_STATE(496)] = 33698, - [SMALL_STATE(497)] = 33769, - [SMALL_STATE(498)] = 33840, - [SMALL_STATE(499)] = 33911, - [SMALL_STATE(500)] = 33982, - [SMALL_STATE(501)] = 34053, - [SMALL_STATE(502)] = 34124, - [SMALL_STATE(503)] = 34195, - [SMALL_STATE(504)] = 34262, - [SMALL_STATE(505)] = 34329, - [SMALL_STATE(506)] = 34400, - [SMALL_STATE(507)] = 34467, - [SMALL_STATE(508)] = 34531, - [SMALL_STATE(509)] = 34595, - [SMALL_STATE(510)] = 34663, - [SMALL_STATE(511)] = 34731, - [SMALL_STATE(512)] = 34799, - [SMALL_STATE(513)] = 34867, - [SMALL_STATE(514)] = 34935, - [SMALL_STATE(515)] = 34999, - [SMALL_STATE(516)] = 35067, - [SMALL_STATE(517)] = 35135, - [SMALL_STATE(518)] = 35203, - [SMALL_STATE(519)] = 35271, - [SMALL_STATE(520)] = 35335, - [SMALL_STATE(521)] = 35399, - [SMALL_STATE(522)] = 35463, - [SMALL_STATE(523)] = 35527, - [SMALL_STATE(524)] = 35591, - [SMALL_STATE(525)] = 35655, - [SMALL_STATE(526)] = 35719, - [SMALL_STATE(527)] = 35783, - [SMALL_STATE(528)] = 35847, - [SMALL_STATE(529)] = 35915, - [SMALL_STATE(530)] = 35983, - [SMALL_STATE(531)] = 36051, - [SMALL_STATE(532)] = 36119, - [SMALL_STATE(533)] = 36187, - [SMALL_STATE(534)] = 36255, - [SMALL_STATE(535)] = 36323, - [SMALL_STATE(536)] = 36387, - [SMALL_STATE(537)] = 36455, - [SMALL_STATE(538)] = 36523, - [SMALL_STATE(539)] = 36591, - [SMALL_STATE(540)] = 36659, - [SMALL_STATE(541)] = 36727, - [SMALL_STATE(542)] = 36791, - [SMALL_STATE(543)] = 36859, - [SMALL_STATE(544)] = 36927, - [SMALL_STATE(545)] = 36995, - [SMALL_STATE(546)] = 37063, - [SMALL_STATE(547)] = 37131, - [SMALL_STATE(548)] = 37195, - [SMALL_STATE(549)] = 37264, - [SMALL_STATE(550)] = 37333, - [SMALL_STATE(551)] = 37402, - [SMALL_STATE(552)] = 37471, - [SMALL_STATE(553)] = 37541, - [SMALL_STATE(554)] = 37608, - [SMALL_STATE(555)] = 37664, - [SMALL_STATE(556)] = 37722, - [SMALL_STATE(557)] = 37794, - [SMALL_STATE(558)] = 37856, - [SMALL_STATE(559)] = 37922, - [SMALL_STATE(560)] = 37990, - [SMALL_STATE(561)] = 38064, - [SMALL_STATE(562)] = 38132, - [SMALL_STATE(563)] = 38202, - [SMALL_STATE(564)] = 38256, - [SMALL_STATE(565)] = 38320, - [SMALL_STATE(566)] = 38378, - [SMALL_STATE(567)] = 38418, - [SMALL_STATE(568)] = 38464, - [SMALL_STATE(569)] = 38522, - [SMALL_STATE(570)] = 38597, - [SMALL_STATE(571)] = 38670, - [SMALL_STATE(572)] = 38745, - [SMALL_STATE(573)] = 38817, - [SMALL_STATE(574)] = 38889, - [SMALL_STATE(575)] = 38961, - [SMALL_STATE(576)] = 39033, - [SMALL_STATE(577)] = 39105, - [SMALL_STATE(578)] = 39177, - [SMALL_STATE(579)] = 39249, - [SMALL_STATE(580)] = 39321, - [SMALL_STATE(581)] = 39393, - [SMALL_STATE(582)] = 39465, - [SMALL_STATE(583)] = 39537, - [SMALL_STATE(584)] = 39609, - [SMALL_STATE(585)] = 39679, - [SMALL_STATE(586)] = 39751, - [SMALL_STATE(587)] = 39823, - [SMALL_STATE(588)] = 39895, - [SMALL_STATE(589)] = 39967, - [SMALL_STATE(590)] = 40039, - [SMALL_STATE(591)] = 40109, - [SMALL_STATE(592)] = 40181, - [SMALL_STATE(593)] = 40253, - [SMALL_STATE(594)] = 40325, - [SMALL_STATE(595)] = 40397, - [SMALL_STATE(596)] = 40469, - [SMALL_STATE(597)] = 40541, - [SMALL_STATE(598)] = 40613, - [SMALL_STATE(599)] = 40685, - [SMALL_STATE(600)] = 40757, - [SMALL_STATE(601)] = 40829, - [SMALL_STATE(602)] = 40901, - [SMALL_STATE(603)] = 40973, - [SMALL_STATE(604)] = 41045, - [SMALL_STATE(605)] = 41117, - [SMALL_STATE(606)] = 41189, - [SMALL_STATE(607)] = 41261, - [SMALL_STATE(608)] = 41297, - [SMALL_STATE(609)] = 41367, - [SMALL_STATE(610)] = 41439, - [SMALL_STATE(611)] = 41511, - [SMALL_STATE(612)] = 41581, - [SMALL_STATE(613)] = 41651, - [SMALL_STATE(614)] = 41723, - [SMALL_STATE(615)] = 41795, - [SMALL_STATE(616)] = 41867, - [SMALL_STATE(617)] = 41936, - [SMALL_STATE(618)] = 41969, - [SMALL_STATE(619)] = 42038, - [SMALL_STATE(620)] = 42071, - [SMALL_STATE(621)] = 42104, - [SMALL_STATE(622)] = 42137, - [SMALL_STATE(623)] = 42170, - [SMALL_STATE(624)] = 42203, - [SMALL_STATE(625)] = 42236, - [SMALL_STATE(626)] = 42269, - [SMALL_STATE(627)] = 42302, - [SMALL_STATE(628)] = 42335, - [SMALL_STATE(629)] = 42368, - [SMALL_STATE(630)] = 42401, - [SMALL_STATE(631)] = 42434, - [SMALL_STATE(632)] = 42467, - [SMALL_STATE(633)] = 42536, - [SMALL_STATE(634)] = 42605, - [SMALL_STATE(635)] = 42674, - [SMALL_STATE(636)] = 42743, - [SMALL_STATE(637)] = 42812, - [SMALL_STATE(638)] = 42881, - [SMALL_STATE(639)] = 42950, - [SMALL_STATE(640)] = 43019, - [SMALL_STATE(641)] = 43088, - [SMALL_STATE(642)] = 43157, - [SMALL_STATE(643)] = 43226, - [SMALL_STATE(644)] = 43295, - [SMALL_STATE(645)] = 43364, - [SMALL_STATE(646)] = 43433, - [SMALL_STATE(647)] = 43502, - [SMALL_STATE(648)] = 43571, - [SMALL_STATE(649)] = 43640, - [SMALL_STATE(650)] = 43709, - [SMALL_STATE(651)] = 43778, - [SMALL_STATE(652)] = 43847, - [SMALL_STATE(653)] = 43880, - [SMALL_STATE(654)] = 43913, - [SMALL_STATE(655)] = 43982, - [SMALL_STATE(656)] = 44051, - [SMALL_STATE(657)] = 44120, - [SMALL_STATE(658)] = 44189, - [SMALL_STATE(659)] = 44258, - [SMALL_STATE(660)] = 44327, - [SMALL_STATE(661)] = 44360, - [SMALL_STATE(662)] = 44393, - [SMALL_STATE(663)] = 44426, - [SMALL_STATE(664)] = 44495, - [SMALL_STATE(665)] = 44564, - [SMALL_STATE(666)] = 44633, - [SMALL_STATE(667)] = 44671, - [SMALL_STATE(668)] = 44705, - [SMALL_STATE(669)] = 44739, - [SMALL_STATE(670)] = 44772, - [SMALL_STATE(671)] = 44803, - [SMALL_STATE(672)] = 44836, - [SMALL_STATE(673)] = 44869, - [SMALL_STATE(674)] = 44902, - [SMALL_STATE(675)] = 44933, - [SMALL_STATE(676)] = 44964, - [SMALL_STATE(677)] = 44997, - [SMALL_STATE(678)] = 45030, - [SMALL_STATE(679)] = 45063, - [SMALL_STATE(680)] = 45094, - [SMALL_STATE(681)] = 45125, - [SMALL_STATE(682)] = 45156, - [SMALL_STATE(683)] = 45187, - [SMALL_STATE(684)] = 45218, - [SMALL_STATE(685)] = 45249, - [SMALL_STATE(686)] = 45280, - [SMALL_STATE(687)] = 45313, - [SMALL_STATE(688)] = 45346, - [SMALL_STATE(689)] = 45377, - [SMALL_STATE(690)] = 45408, - [SMALL_STATE(691)] = 45439, - [SMALL_STATE(692)] = 45470, - [SMALL_STATE(693)] = 45501, - [SMALL_STATE(694)] = 45532, - [SMALL_STATE(695)] = 45565, - [SMALL_STATE(696)] = 45598, - [SMALL_STATE(697)] = 45631, - [SMALL_STATE(698)] = 45664, - [SMALL_STATE(699)] = 45697, - [SMALL_STATE(700)] = 45728, - [SMALL_STATE(701)] = 45761, - [SMALL_STATE(702)] = 45794, - [SMALL_STATE(703)] = 45825, - [SMALL_STATE(704)] = 45856, - [SMALL_STATE(705)] = 45889, - [SMALL_STATE(706)] = 45922, - [SMALL_STATE(707)] = 45955, - [SMALL_STATE(708)] = 45995, - [SMALL_STATE(709)] = 46027, - [SMALL_STATE(710)] = 46063, - [SMALL_STATE(711)] = 46112, - [SMALL_STATE(712)] = 46159, - [SMALL_STATE(713)] = 46206, - [SMALL_STATE(714)] = 46252, - [SMALL_STATE(715)] = 46284, - [SMALL_STATE(716)] = 46330, - [SMALL_STATE(717)] = 46362, - [SMALL_STATE(718)] = 46408, - [SMALL_STATE(719)] = 46454, - [SMALL_STATE(720)] = 46500, - [SMALL_STATE(721)] = 46546, - [SMALL_STATE(722)] = 46592, - [SMALL_STATE(723)] = 46630, - [SMALL_STATE(724)] = 46668, - [SMALL_STATE(725)] = 46700, - [SMALL_STATE(726)] = 46746, - [SMALL_STATE(727)] = 46792, - [SMALL_STATE(728)] = 46824, - [SMALL_STATE(729)] = 46862, - [SMALL_STATE(730)] = 46900, - [SMALL_STATE(731)] = 46932, - [SMALL_STATE(732)] = 46964, - [SMALL_STATE(733)] = 46992, - [SMALL_STATE(734)] = 47020, - [SMALL_STATE(735)] = 47052, - [SMALL_STATE(736)] = 47084, - [SMALL_STATE(737)] = 47110, - [SMALL_STATE(738)] = 47136, - [SMALL_STATE(739)] = 47164, - [SMALL_STATE(740)] = 47200, - [SMALL_STATE(741)] = 47226, - [SMALL_STATE(742)] = 47252, - [SMALL_STATE(743)] = 47278, - [SMALL_STATE(744)] = 47314, - [SMALL_STATE(745)] = 47350, - [SMALL_STATE(746)] = 47376, - [SMALL_STATE(747)] = 47402, - [SMALL_STATE(748)] = 47428, - [SMALL_STATE(749)] = 47454, - [SMALL_STATE(750)] = 47480, - [SMALL_STATE(751)] = 47516, - [SMALL_STATE(752)] = 47542, - [SMALL_STATE(753)] = 47568, - [SMALL_STATE(754)] = 47594, - [SMALL_STATE(755)] = 47620, - [SMALL_STATE(756)] = 47646, - [SMALL_STATE(757)] = 47683, - [SMALL_STATE(758)] = 47719, - [SMALL_STATE(759)] = 47755, - [SMALL_STATE(760)] = 47783, - [SMALL_STATE(761)] = 47819, - [SMALL_STATE(762)] = 47855, - [SMALL_STATE(763)] = 47891, - [SMALL_STATE(764)] = 47927, - [SMALL_STATE(765)] = 47958, - [SMALL_STATE(766)] = 47988, - [SMALL_STATE(767)] = 48018, - [SMALL_STATE(768)] = 48048, - [SMALL_STATE(769)] = 48078, - [SMALL_STATE(770)] = 48108, - [SMALL_STATE(771)] = 48138, - [SMALL_STATE(772)] = 48167, - [SMALL_STATE(773)] = 48196, - [SMALL_STATE(774)] = 48225, - [SMALL_STATE(775)] = 48245, - [SMALL_STATE(776)] = 48265, - [SMALL_STATE(777)] = 48285, - [SMALL_STATE(778)] = 48316, - [SMALL_STATE(779)] = 48331, - [SMALL_STATE(780)] = 48354, - [SMALL_STATE(781)] = 48385, - [SMALL_STATE(782)] = 48408, - [SMALL_STATE(783)] = 48431, - [SMALL_STATE(784)] = 48454, - [SMALL_STATE(785)] = 48485, - [SMALL_STATE(786)] = 48508, - [SMALL_STATE(787)] = 48523, - [SMALL_STATE(788)] = 48546, - [SMALL_STATE(789)] = 48569, - [SMALL_STATE(790)] = 48600, - [SMALL_STATE(791)] = 48623, - [SMALL_STATE(792)] = 48638, - [SMALL_STATE(793)] = 48661, - [SMALL_STATE(794)] = 48681, - [SMALL_STATE(795)] = 48701, - [SMALL_STATE(796)] = 48721, - [SMALL_STATE(797)] = 48741, - [SMALL_STATE(798)] = 48761, - [SMALL_STATE(799)] = 48781, - [SMALL_STATE(800)] = 48801, - [SMALL_STATE(801)] = 48821, - [SMALL_STATE(802)] = 48841, - [SMALL_STATE(803)] = 48869, - [SMALL_STATE(804)] = 48889, - [SMALL_STATE(805)] = 48917, - [SMALL_STATE(806)] = 48945, - [SMALL_STATE(807)] = 48965, - [SMALL_STATE(808)] = 48985, - [SMALL_STATE(809)] = 49005, - [SMALL_STATE(810)] = 49025, - [SMALL_STATE(811)] = 49045, - [SMALL_STATE(812)] = 49070, - [SMALL_STATE(813)] = 49095, - [SMALL_STATE(814)] = 49114, - [SMALL_STATE(815)] = 49127, - [SMALL_STATE(816)] = 49152, - [SMALL_STATE(817)] = 49177, - [SMALL_STATE(818)] = 49196, - [SMALL_STATE(819)] = 49209, - [SMALL_STATE(820)] = 49222, - [SMALL_STATE(821)] = 49235, - [SMALL_STATE(822)] = 49248, - [SMALL_STATE(823)] = 49270, - [SMALL_STATE(824)] = 49288, - [SMALL_STATE(825)] = 49306, - [SMALL_STATE(826)] = 49318, - [SMALL_STATE(827)] = 49340, - [SMALL_STATE(828)] = 49362, - [SMALL_STATE(829)] = 49374, - [SMALL_STATE(830)] = 49392, - [SMALL_STATE(831)] = 49404, - [SMALL_STATE(832)] = 49426, - [SMALL_STATE(833)] = 49448, - [SMALL_STATE(834)] = 49470, - [SMALL_STATE(835)] = 49492, - [SMALL_STATE(836)] = 49514, - [SMALL_STATE(837)] = 49532, - [SMALL_STATE(838)] = 49552, - [SMALL_STATE(839)] = 49564, - [SMALL_STATE(840)] = 49576, - [SMALL_STATE(841)] = 49594, - [SMALL_STATE(842)] = 49606, - [SMALL_STATE(843)] = 49618, - [SMALL_STATE(844)] = 49635, - [SMALL_STATE(845)] = 49652, - [SMALL_STATE(846)] = 49671, - [SMALL_STATE(847)] = 49682, - [SMALL_STATE(848)] = 49693, - [SMALL_STATE(849)] = 49704, - [SMALL_STATE(850)] = 49715, - [SMALL_STATE(851)] = 49726, - [SMALL_STATE(852)] = 49737, - [SMALL_STATE(853)] = 49754, - [SMALL_STATE(854)] = 49771, - [SMALL_STATE(855)] = 49788, - [SMALL_STATE(856)] = 49807, - [SMALL_STATE(857)] = 49818, - [SMALL_STATE(858)] = 49837, - [SMALL_STATE(859)] = 49853, - [SMALL_STATE(860)] = 49869, - [SMALL_STATE(861)] = 49885, - [SMALL_STATE(862)] = 49895, - [SMALL_STATE(863)] = 49905, - [SMALL_STATE(864)] = 49915, - [SMALL_STATE(865)] = 49931, - [SMALL_STATE(866)] = 49945, - [SMALL_STATE(867)] = 49959, - [SMALL_STATE(868)] = 49973, - [SMALL_STATE(869)] = 49989, - [SMALL_STATE(870)] = 50005, - [SMALL_STATE(871)] = 50015, - [SMALL_STATE(872)] = 50025, - [SMALL_STATE(873)] = 50039, - [SMALL_STATE(874)] = 50055, - [SMALL_STATE(875)] = 50071, - [SMALL_STATE(876)] = 50087, - [SMALL_STATE(877)] = 50097, - [SMALL_STATE(878)] = 50111, - [SMALL_STATE(879)] = 50127, - [SMALL_STATE(880)] = 50141, - [SMALL_STATE(881)] = 50155, - [SMALL_STATE(882)] = 50165, - [SMALL_STATE(883)] = 50179, - [SMALL_STATE(884)] = 50193, - [SMALL_STATE(885)] = 50209, - [SMALL_STATE(886)] = 50223, - [SMALL_STATE(887)] = 50237, - [SMALL_STATE(888)] = 50251, - [SMALL_STATE(889)] = 50267, - [SMALL_STATE(890)] = 50277, - [SMALL_STATE(891)] = 50293, - [SMALL_STATE(892)] = 50307, - [SMALL_STATE(893)] = 50323, - [SMALL_STATE(894)] = 50337, - [SMALL_STATE(895)] = 50347, - [SMALL_STATE(896)] = 50363, - [SMALL_STATE(897)] = 50377, - [SMALL_STATE(898)] = 50391, - [SMALL_STATE(899)] = 50401, - [SMALL_STATE(900)] = 50415, - [SMALL_STATE(901)] = 50425, - [SMALL_STATE(902)] = 50439, - [SMALL_STATE(903)] = 50455, - [SMALL_STATE(904)] = 50468, - [SMALL_STATE(905)] = 50481, - [SMALL_STATE(906)] = 50492, - [SMALL_STATE(907)] = 50505, - [SMALL_STATE(908)] = 50518, - [SMALL_STATE(909)] = 50531, - [SMALL_STATE(910)] = 50544, - [SMALL_STATE(911)] = 50557, - [SMALL_STATE(912)] = 50570, - [SMALL_STATE(913)] = 50583, - [SMALL_STATE(914)] = 50596, - [SMALL_STATE(915)] = 50609, - [SMALL_STATE(916)] = 50622, - [SMALL_STATE(917)] = 50635, - [SMALL_STATE(918)] = 50644, - [SMALL_STATE(919)] = 50657, - [SMALL_STATE(920)] = 50670, - [SMALL_STATE(921)] = 50681, - [SMALL_STATE(922)] = 50694, - [SMALL_STATE(923)] = 50707, - [SMALL_STATE(924)] = 50720, - [SMALL_STATE(925)] = 50733, - [SMALL_STATE(926)] = 50746, - [SMALL_STATE(927)] = 50759, - [SMALL_STATE(928)] = 50772, - [SMALL_STATE(929)] = 50781, - [SMALL_STATE(930)] = 50794, - [SMALL_STATE(931)] = 50807, - [SMALL_STATE(932)] = 50820, - [SMALL_STATE(933)] = 50833, - [SMALL_STATE(934)] = 50846, - [SMALL_STATE(935)] = 50859, - [SMALL_STATE(936)] = 50872, - [SMALL_STATE(937)] = 50885, - [SMALL_STATE(938)] = 50898, - [SMALL_STATE(939)] = 50911, - [SMALL_STATE(940)] = 50924, - [SMALL_STATE(941)] = 50937, - [SMALL_STATE(942)] = 50950, - [SMALL_STATE(943)] = 50963, - [SMALL_STATE(944)] = 50976, - [SMALL_STATE(945)] = 50984, - [SMALL_STATE(946)] = 50994, - [SMALL_STATE(947)] = 51002, - [SMALL_STATE(948)] = 51012, - [SMALL_STATE(949)] = 51022, - [SMALL_STATE(950)] = 51032, - [SMALL_STATE(951)] = 51042, - [SMALL_STATE(952)] = 51052, - [SMALL_STATE(953)] = 51062, - [SMALL_STATE(954)] = 51072, - [SMALL_STATE(955)] = 51082, - [SMALL_STATE(956)] = 51092, - [SMALL_STATE(957)] = 51102, - [SMALL_STATE(958)] = 51112, - [SMALL_STATE(959)] = 51122, - [SMALL_STATE(960)] = 51132, - [SMALL_STATE(961)] = 51142, - [SMALL_STATE(962)] = 51152, - [SMALL_STATE(963)] = 51162, - [SMALL_STATE(964)] = 51170, - [SMALL_STATE(965)] = 51178, - [SMALL_STATE(966)] = 51188, - [SMALL_STATE(967)] = 51198, - [SMALL_STATE(968)] = 51208, - [SMALL_STATE(969)] = 51216, - [SMALL_STATE(970)] = 51226, - [SMALL_STATE(971)] = 51236, - [SMALL_STATE(972)] = 51246, - [SMALL_STATE(973)] = 51256, - [SMALL_STATE(974)] = 51264, - [SMALL_STATE(975)] = 51272, - [SMALL_STATE(976)] = 51282, - [SMALL_STATE(977)] = 51292, - [SMALL_STATE(978)] = 51300, - [SMALL_STATE(979)] = 51308, - [SMALL_STATE(980)] = 51318, - [SMALL_STATE(981)] = 51328, - [SMALL_STATE(982)] = 51338, - [SMALL_STATE(983)] = 51346, - [SMALL_STATE(984)] = 51354, - [SMALL_STATE(985)] = 51364, - [SMALL_STATE(986)] = 51374, - [SMALL_STATE(987)] = 51382, - [SMALL_STATE(988)] = 51392, - [SMALL_STATE(989)] = 51402, - [SMALL_STATE(990)] = 51412, - [SMALL_STATE(991)] = 51422, - [SMALL_STATE(992)] = 51432, - [SMALL_STATE(993)] = 51442, - [SMALL_STATE(994)] = 51449, - [SMALL_STATE(995)] = 51456, - [SMALL_STATE(996)] = 51463, - [SMALL_STATE(997)] = 51470, - [SMALL_STATE(998)] = 51477, - [SMALL_STATE(999)] = 51484, - [SMALL_STATE(1000)] = 51491, - [SMALL_STATE(1001)] = 51498, - [SMALL_STATE(1002)] = 51505, - [SMALL_STATE(1003)] = 51512, - [SMALL_STATE(1004)] = 51519, - [SMALL_STATE(1005)] = 51526, - [SMALL_STATE(1006)] = 51533, - [SMALL_STATE(1007)] = 51540, - [SMALL_STATE(1008)] = 51547, - [SMALL_STATE(1009)] = 51554, - [SMALL_STATE(1010)] = 51561, - [SMALL_STATE(1011)] = 51568, - [SMALL_STATE(1012)] = 51575, - [SMALL_STATE(1013)] = 51582, - [SMALL_STATE(1014)] = 51589, - [SMALL_STATE(1015)] = 51596, - [SMALL_STATE(1016)] = 51603, - [SMALL_STATE(1017)] = 51610, - [SMALL_STATE(1018)] = 51617, - [SMALL_STATE(1019)] = 51624, - [SMALL_STATE(1020)] = 51631, - [SMALL_STATE(1021)] = 51638, - [SMALL_STATE(1022)] = 51645, - [SMALL_STATE(1023)] = 51652, - [SMALL_STATE(1024)] = 51659, - [SMALL_STATE(1025)] = 51666, - [SMALL_STATE(1026)] = 51673, - [SMALL_STATE(1027)] = 51680, - [SMALL_STATE(1028)] = 51687, - [SMALL_STATE(1029)] = 51694, - [SMALL_STATE(1030)] = 51701, - [SMALL_STATE(1031)] = 51708, - [SMALL_STATE(1032)] = 51715, - [SMALL_STATE(1033)] = 51722, - [SMALL_STATE(1034)] = 51729, - [SMALL_STATE(1035)] = 51736, - [SMALL_STATE(1036)] = 51743, - [SMALL_STATE(1037)] = 51750, - [SMALL_STATE(1038)] = 51757, - [SMALL_STATE(1039)] = 51764, - [SMALL_STATE(1040)] = 51771, - [SMALL_STATE(1041)] = 51778, - [SMALL_STATE(1042)] = 51785, - [SMALL_STATE(1043)] = 51792, - [SMALL_STATE(1044)] = 51799, - [SMALL_STATE(1045)] = 51806, - [SMALL_STATE(1046)] = 51813, - [SMALL_STATE(1047)] = 51820, - [SMALL_STATE(1048)] = 51827, - [SMALL_STATE(1049)] = 51834, - [SMALL_STATE(1050)] = 51841, - [SMALL_STATE(1051)] = 51848, - [SMALL_STATE(1052)] = 51855, - [SMALL_STATE(1053)] = 51862, - [SMALL_STATE(1054)] = 51869, - [SMALL_STATE(1055)] = 51876, - [SMALL_STATE(1056)] = 51883, - [SMALL_STATE(1057)] = 51890, - [SMALL_STATE(1058)] = 51897, - [SMALL_STATE(1059)] = 51904, - [SMALL_STATE(1060)] = 51911, - [SMALL_STATE(1061)] = 51918, - [SMALL_STATE(1062)] = 51925, - [SMALL_STATE(1063)] = 51932, - [SMALL_STATE(1064)] = 51939, - [SMALL_STATE(1065)] = 51946, - [SMALL_STATE(1066)] = 51953, - [SMALL_STATE(1067)] = 51960, - [SMALL_STATE(1068)] = 51967, - [SMALL_STATE(1069)] = 51974, - [SMALL_STATE(1070)] = 51981, - [SMALL_STATE(1071)] = 51988, - [SMALL_STATE(1072)] = 51995, - [SMALL_STATE(1073)] = 52002, - [SMALL_STATE(1074)] = 52009, - [SMALL_STATE(1075)] = 52016, - [SMALL_STATE(1076)] = 52023, - [SMALL_STATE(1077)] = 52030, - [SMALL_STATE(1078)] = 52037, - [SMALL_STATE(1079)] = 52044, - [SMALL_STATE(1080)] = 52051, - [SMALL_STATE(1081)] = 52058, - [SMALL_STATE(1082)] = 52065, - [SMALL_STATE(1083)] = 52072, - [SMALL_STATE(1084)] = 52079, - [SMALL_STATE(1085)] = 52086, - [SMALL_STATE(1086)] = 52093, - [SMALL_STATE(1087)] = 52100, - [SMALL_STATE(1088)] = 52107, - [SMALL_STATE(1089)] = 52114, - [SMALL_STATE(1090)] = 52121, - [SMALL_STATE(1091)] = 52128, - [SMALL_STATE(1092)] = 52135, - [SMALL_STATE(1093)] = 52142, - [SMALL_STATE(1094)] = 52149, - [SMALL_STATE(1095)] = 52156, - [SMALL_STATE(1096)] = 52163, - [SMALL_STATE(1097)] = 52170, - [SMALL_STATE(1098)] = 52177, - [SMALL_STATE(1099)] = 52184, - [SMALL_STATE(1100)] = 52191, - [SMALL_STATE(1101)] = 52198, - [SMALL_STATE(1102)] = 52205, - [SMALL_STATE(1103)] = 52212, - [SMALL_STATE(1104)] = 52219, - [SMALL_STATE(1105)] = 52226, - [SMALL_STATE(1106)] = 52233, - [SMALL_STATE(1107)] = 52240, - [SMALL_STATE(1108)] = 52247, - [SMALL_STATE(1109)] = 52254, - [SMALL_STATE(1110)] = 52261, - [SMALL_STATE(1111)] = 52268, - [SMALL_STATE(1112)] = 52275, - [SMALL_STATE(1113)] = 52282, - [SMALL_STATE(1114)] = 52289, - [SMALL_STATE(1115)] = 52296, - [SMALL_STATE(1116)] = 52303, - [SMALL_STATE(1117)] = 52310, - [SMALL_STATE(1118)] = 52317, - [SMALL_STATE(1119)] = 52324, - [SMALL_STATE(1120)] = 52331, - [SMALL_STATE(1121)] = 52338, - [SMALL_STATE(1122)] = 52345, - [SMALL_STATE(1123)] = 52352, - [SMALL_STATE(1124)] = 52359, - [SMALL_STATE(1125)] = 52366, - [SMALL_STATE(1126)] = 52373, - [SMALL_STATE(1127)] = 52380, - [SMALL_STATE(1128)] = 52387, - [SMALL_STATE(1129)] = 52394, - [SMALL_STATE(1130)] = 52401, - [SMALL_STATE(1131)] = 52408, - [SMALL_STATE(1132)] = 52415, - [SMALL_STATE(1133)] = 52422, - [SMALL_STATE(1134)] = 52429, - [SMALL_STATE(1135)] = 52436, - [SMALL_STATE(1136)] = 52443, - [SMALL_STATE(1137)] = 52450, - [SMALL_STATE(1138)] = 52457, - [SMALL_STATE(1139)] = 52464, - [SMALL_STATE(1140)] = 52471, - [SMALL_STATE(1141)] = 52478, - [SMALL_STATE(1142)] = 52485, - [SMALL_STATE(1143)] = 52492, - [SMALL_STATE(1144)] = 52499, - [SMALL_STATE(1145)] = 52506, - [SMALL_STATE(1146)] = 52513, - [SMALL_STATE(1147)] = 52520, - [SMALL_STATE(1148)] = 52527, - [SMALL_STATE(1149)] = 52534, - [SMALL_STATE(1150)] = 52541, - [SMALL_STATE(1151)] = 52548, - [SMALL_STATE(1152)] = 52555, - [SMALL_STATE(1153)] = 52562, - [SMALL_STATE(1154)] = 52569, - [SMALL_STATE(1155)] = 52576, - [SMALL_STATE(1156)] = 52583, - [SMALL_STATE(1157)] = 52590, - [SMALL_STATE(1158)] = 52597, - [SMALL_STATE(1159)] = 52604, - [SMALL_STATE(1160)] = 52611, + [SMALL_STATE(361)] = 0, + [SMALL_STATE(362)] = 98, + [SMALL_STATE(363)] = 193, + [SMALL_STATE(364)] = 288, + [SMALL_STATE(365)] = 360, + [SMALL_STATE(366)] = 430, + [SMALL_STATE(367)] = 522, + [SMALL_STATE(368)] = 594, + [SMALL_STATE(369)] = 664, + [SMALL_STATE(370)] = 734, + [SMALL_STATE(371)] = 806, + [SMALL_STATE(372)] = 876, + [SMALL_STATE(373)] = 948, + [SMALL_STATE(374)] = 1037, + [SMALL_STATE(375)] = 1134, + [SMALL_STATE(376)] = 1231, + [SMALL_STATE(377)] = 1328, + [SMALL_STATE(378)] = 1417, + [SMALL_STATE(379)] = 1514, + [SMALL_STATE(380)] = 1611, + [SMALL_STATE(381)] = 1672, + [SMALL_STATE(382)] = 1761, + [SMALL_STATE(383)] = 1858, + [SMALL_STATE(384)] = 1947, + [SMALL_STATE(385)] = 2044, + [SMALL_STATE(386)] = 2141, + [SMALL_STATE(387)] = 2238, + [SMALL_STATE(388)] = 2299, + [SMALL_STATE(389)] = 2388, + [SMALL_STATE(390)] = 2485, + [SMALL_STATE(391)] = 2582, + [SMALL_STATE(392)] = 2679, + [SMALL_STATE(393)] = 2776, + [SMALL_STATE(394)] = 2865, + [SMALL_STATE(395)] = 2954, + [SMALL_STATE(396)] = 3021, + [SMALL_STATE(397)] = 3082, + [SMALL_STATE(398)] = 3171, + [SMALL_STATE(399)] = 3260, + [SMALL_STATE(400)] = 3357, + [SMALL_STATE(401)] = 3446, + [SMALL_STATE(402)] = 3542, + [SMALL_STATE(403)] = 3597, + [SMALL_STATE(404)] = 3652, + [SMALL_STATE(405)] = 3741, + [SMALL_STATE(406)] = 3828, + [SMALL_STATE(407)] = 3915, + [SMALL_STATE(408)] = 4002, + [SMALL_STATE(409)] = 4089, + [SMALL_STATE(410)] = 4176, + [SMALL_STATE(411)] = 4263, + [SMALL_STATE(412)] = 4343, + [SMALL_STATE(413)] = 4423, + [SMALL_STATE(414)] = 4503, + [SMALL_STATE(415)] = 4583, + [SMALL_STATE(416)] = 4663, + [SMALL_STATE(417)] = 4743, + [SMALL_STATE(418)] = 4823, + [SMALL_STATE(419)] = 4903, + [SMALL_STATE(420)] = 4983, + [SMALL_STATE(421)] = 5063, + [SMALL_STATE(422)] = 5139, + [SMALL_STATE(423)] = 5219, + [SMALL_STATE(424)] = 5299, + [SMALL_STATE(425)] = 5379, + [SMALL_STATE(426)] = 5459, + [SMALL_STATE(427)] = 5539, + [SMALL_STATE(428)] = 5619, + [SMALL_STATE(429)] = 5699, + [SMALL_STATE(430)] = 5779, + [SMALL_STATE(431)] = 5859, + [SMALL_STATE(432)] = 5939, + [SMALL_STATE(433)] = 6019, + [SMALL_STATE(434)] = 6099, + [SMALL_STATE(435)] = 6179, + [SMALL_STATE(436)] = 6259, + [SMALL_STATE(437)] = 6339, + [SMALL_STATE(438)] = 6419, + [SMALL_STATE(439)] = 6499, + [SMALL_STATE(440)] = 6579, + [SMALL_STATE(441)] = 6659, + [SMALL_STATE(442)] = 6739, + [SMALL_STATE(443)] = 6819, + [SMALL_STATE(444)] = 6898, + [SMALL_STATE(445)] = 6987, + [SMALL_STATE(446)] = 7060, + [SMALL_STATE(447)] = 7127, + [SMALL_STATE(448)] = 7198, + [SMALL_STATE(449)] = 7273, + [SMALL_STATE(450)] = 7350, + [SMALL_STATE(451)] = 7431, + [SMALL_STATE(452)] = 7508, + [SMALL_STATE(453)] = 7571, + [SMALL_STATE(454)] = 7648, + [SMALL_STATE(455)] = 7725, + [SMALL_STATE(456)] = 7798, + [SMALL_STATE(457)] = 7875, + [SMALL_STATE(458)] = 7952, + [SMALL_STATE(459)] = 8035, + [SMALL_STATE(460)] = 8112, + [SMALL_STATE(461)] = 8185, + [SMALL_STATE(462)] = 8262, + [SMALL_STATE(463)] = 8339, + [SMALL_STATE(464)] = 8416, + [SMALL_STATE(465)] = 8477, + [SMALL_STATE(466)] = 8554, + [SMALL_STATE(467)] = 8619, + [SMALL_STATE(468)] = 8696, + [SMALL_STATE(469)] = 8757, + [SMALL_STATE(470)] = 8816, + [SMALL_STATE(471)] = 8893, + [SMALL_STATE(472)] = 8966, + [SMALL_STATE(473)] = 9039, + [SMALL_STATE(474)] = 9116, + [SMALL_STATE(475)] = 9189, + [SMALL_STATE(476)] = 9266, + [SMALL_STATE(477)] = 9333, + [SMALL_STATE(478)] = 9406, + [SMALL_STATE(479)] = 9479, + [SMALL_STATE(480)] = 9540, + [SMALL_STATE(481)] = 9591, + [SMALL_STATE(482)] = 9676, + [SMALL_STATE(483)] = 9753, + [SMALL_STATE(484)] = 9830, + [SMALL_STATE(485)] = 9891, + [SMALL_STATE(486)] = 9964, + [SMALL_STATE(487)] = 10037, + [SMALL_STATE(488)] = 10110, + [SMALL_STATE(489)] = 10180, + [SMALL_STATE(490)] = 10254, + [SMALL_STATE(491)] = 10304, + [SMALL_STATE(492)] = 10378, + [SMALL_STATE(493)] = 10428, + [SMALL_STATE(494)] = 10478, + [SMALL_STATE(495)] = 10540, + [SMALL_STATE(496)] = 10610, + [SMALL_STATE(497)] = 10660, + [SMALL_STATE(498)] = 10730, + [SMALL_STATE(499)] = 10800, + [SMALL_STATE(500)] = 10870, + [SMALL_STATE(501)] = 10940, + [SMALL_STATE(502)] = 11014, + [SMALL_STATE(503)] = 11064, + [SMALL_STATE(504)] = 11138, + [SMALL_STATE(505)] = 11212, + [SMALL_STATE(506)] = 11266, + [SMALL_STATE(507)] = 11340, + [SMALL_STATE(508)] = 11414, + [SMALL_STATE(509)] = 11464, + [SMALL_STATE(510)] = 11538, + [SMALL_STATE(511)] = 11612, + [SMALL_STATE(512)] = 11686, + [SMALL_STATE(513)] = 11736, + [SMALL_STATE(514)] = 11810, + [SMALL_STATE(515)] = 11860, + [SMALL_STATE(516)] = 11934, + [SMALL_STATE(517)] = 12008, + [SMALL_STATE(518)] = 12082, + [SMALL_STATE(519)] = 12156, + [SMALL_STATE(520)] = 12230, + [SMALL_STATE(521)] = 12304, + [SMALL_STATE(522)] = 12354, + [SMALL_STATE(523)] = 12424, + [SMALL_STATE(524)] = 12494, + [SMALL_STATE(525)] = 12564, + [SMALL_STATE(526)] = 12638, + [SMALL_STATE(527)] = 12708, + [SMALL_STATE(528)] = 12778, + [SMALL_STATE(529)] = 12848, + [SMALL_STATE(530)] = 12918, + [SMALL_STATE(531)] = 12988, + [SMALL_STATE(532)] = 13058, + [SMALL_STATE(533)] = 13132, + [SMALL_STATE(534)] = 13206, + [SMALL_STATE(535)] = 13280, + [SMALL_STATE(536)] = 13354, + [SMALL_STATE(537)] = 13428, + [SMALL_STATE(538)] = 13478, + [SMALL_STATE(539)] = 13528, + [SMALL_STATE(540)] = 13602, + [SMALL_STATE(541)] = 13676, + [SMALL_STATE(542)] = 13726, + [SMALL_STATE(543)] = 13800, + [SMALL_STATE(544)] = 13850, + [SMALL_STATE(545)] = 13903, + [SMALL_STATE(546)] = 13956, + [SMALL_STATE(547)] = 14009, + [SMALL_STATE(548)] = 14062, + [SMALL_STATE(549)] = 14108, + [SMALL_STATE(550)] = 14177, + [SMALL_STATE(551)] = 14246, + [SMALL_STATE(552)] = 14315, + [SMALL_STATE(553)] = 14384, + [SMALL_STATE(554)] = 14454, + [SMALL_STATE(555)] = 14521, + [SMALL_STATE(556)] = 14565, + [SMALL_STATE(557)] = 14623, + [SMALL_STATE(558)] = 14697, + [SMALL_STATE(559)] = 14753, + [SMALL_STATE(560)] = 14811, + [SMALL_STATE(561)] = 14873, + [SMALL_STATE(562)] = 14939, + [SMALL_STATE(563)] = 15007, + [SMALL_STATE(564)] = 15075, + [SMALL_STATE(565)] = 15145, + [SMALL_STATE(566)] = 15199, + [SMALL_STATE(567)] = 15263, + [SMALL_STATE(568)] = 15335, + [SMALL_STATE(569)] = 15381, + [SMALL_STATE(570)] = 15419, + [SMALL_STATE(571)] = 15477, + [SMALL_STATE(572)] = 15552, + [SMALL_STATE(573)] = 15625, + [SMALL_STATE(574)] = 15700, + [SMALL_STATE(575)] = 15772, + [SMALL_STATE(576)] = 15844, + [SMALL_STATE(577)] = 15916, + [SMALL_STATE(578)] = 15988, + [SMALL_STATE(579)] = 16060, + [SMALL_STATE(580)] = 16132, + [SMALL_STATE(581)] = 16204, + [SMALL_STATE(582)] = 16276, + [SMALL_STATE(583)] = 16348, + [SMALL_STATE(584)] = 16420, + [SMALL_STATE(585)] = 16492, + [SMALL_STATE(586)] = 16564, + [SMALL_STATE(587)] = 16636, + [SMALL_STATE(588)] = 16708, + [SMALL_STATE(589)] = 16778, + [SMALL_STATE(590)] = 16850, + [SMALL_STATE(591)] = 16922, + [SMALL_STATE(592)] = 16994, + [SMALL_STATE(593)] = 17064, + [SMALL_STATE(594)] = 17136, + [SMALL_STATE(595)] = 17208, + [SMALL_STATE(596)] = 17280, + [SMALL_STATE(597)] = 17352, + [SMALL_STATE(598)] = 17424, + [SMALL_STATE(599)] = 17496, + [SMALL_STATE(600)] = 17568, + [SMALL_STATE(601)] = 17640, + [SMALL_STATE(602)] = 17712, + [SMALL_STATE(603)] = 17784, + [SMALL_STATE(604)] = 17856, + [SMALL_STATE(605)] = 17926, + [SMALL_STATE(606)] = 17998, + [SMALL_STATE(607)] = 18070, + [SMALL_STATE(608)] = 18142, + [SMALL_STATE(609)] = 18212, + [SMALL_STATE(610)] = 18248, + [SMALL_STATE(611)] = 18320, + [SMALL_STATE(612)] = 18392, + [SMALL_STATE(613)] = 18464, + [SMALL_STATE(614)] = 18534, + [SMALL_STATE(615)] = 18606, + [SMALL_STATE(616)] = 18678, + [SMALL_STATE(617)] = 18750, + [SMALL_STATE(618)] = 18822, + [SMALL_STATE(619)] = 18891, + [SMALL_STATE(620)] = 18960, + [SMALL_STATE(621)] = 18993, + [SMALL_STATE(622)] = 19026, + [SMALL_STATE(623)] = 19059, + [SMALL_STATE(624)] = 19092, + [SMALL_STATE(625)] = 19125, + [SMALL_STATE(626)] = 19158, + [SMALL_STATE(627)] = 19191, + [SMALL_STATE(628)] = 19224, + [SMALL_STATE(629)] = 19257, + [SMALL_STATE(630)] = 19290, + [SMALL_STATE(631)] = 19359, + [SMALL_STATE(632)] = 19392, + [SMALL_STATE(633)] = 19425, + [SMALL_STATE(634)] = 19494, + [SMALL_STATE(635)] = 19563, + [SMALL_STATE(636)] = 19632, + [SMALL_STATE(637)] = 19701, + [SMALL_STATE(638)] = 19770, + [SMALL_STATE(639)] = 19839, + [SMALL_STATE(640)] = 19908, + [SMALL_STATE(641)] = 19977, + [SMALL_STATE(642)] = 20046, + [SMALL_STATE(643)] = 20115, + [SMALL_STATE(644)] = 20184, + [SMALL_STATE(645)] = 20217, + [SMALL_STATE(646)] = 20286, + [SMALL_STATE(647)] = 20355, + [SMALL_STATE(648)] = 20424, + [SMALL_STATE(649)] = 20493, + [SMALL_STATE(650)] = 20562, + [SMALL_STATE(651)] = 20631, + [SMALL_STATE(652)] = 20700, + [SMALL_STATE(653)] = 20769, + [SMALL_STATE(654)] = 20802, + [SMALL_STATE(655)] = 20835, + [SMALL_STATE(656)] = 20868, + [SMALL_STATE(657)] = 20937, + [SMALL_STATE(658)] = 21006, + [SMALL_STATE(659)] = 21075, + [SMALL_STATE(660)] = 21144, + [SMALL_STATE(661)] = 21213, + [SMALL_STATE(662)] = 21282, + [SMALL_STATE(663)] = 21351, + [SMALL_STATE(664)] = 21420, + [SMALL_STATE(665)] = 21489, + [SMALL_STATE(666)] = 21522, + [SMALL_STATE(667)] = 21555, + [SMALL_STATE(668)] = 21588, + [SMALL_STATE(669)] = 21622, + [SMALL_STATE(670)] = 21656, + [SMALL_STATE(671)] = 21689, + [SMALL_STATE(672)] = 21722, + [SMALL_STATE(673)] = 21755, + [SMALL_STATE(674)] = 21790, + [SMALL_STATE(675)] = 21823, + [SMALL_STATE(676)] = 21856, + [SMALL_STATE(677)] = 21887, + [SMALL_STATE(678)] = 21920, + [SMALL_STATE(679)] = 21955, + [SMALL_STATE(680)] = 21986, + [SMALL_STATE(681)] = 22017, + [SMALL_STATE(682)] = 22048, + [SMALL_STATE(683)] = 22079, + [SMALL_STATE(684)] = 22110, + [SMALL_STATE(685)] = 22143, + [SMALL_STATE(686)] = 22174, + [SMALL_STATE(687)] = 22205, + [SMALL_STATE(688)] = 22238, + [SMALL_STATE(689)] = 22269, + [SMALL_STATE(690)] = 22300, + [SMALL_STATE(691)] = 22331, + [SMALL_STATE(692)] = 22362, + [SMALL_STATE(693)] = 22393, + [SMALL_STATE(694)] = 22424, + [SMALL_STATE(695)] = 22459, + [SMALL_STATE(696)] = 22492, + [SMALL_STATE(697)] = 22525, + [SMALL_STATE(698)] = 22558, + [SMALL_STATE(699)] = 22591, + [SMALL_STATE(700)] = 22624, + [SMALL_STATE(701)] = 22657, + [SMALL_STATE(702)] = 22688, + [SMALL_STATE(703)] = 22719, + [SMALL_STATE(704)] = 22750, + [SMALL_STATE(705)] = 22783, + [SMALL_STATE(706)] = 22816, + [SMALL_STATE(707)] = 22849, + [SMALL_STATE(708)] = 22880, + [SMALL_STATE(709)] = 22913, + [SMALL_STATE(710)] = 22944, + [SMALL_STATE(711)] = 22979, + [SMALL_STATE(712)] = 23012, + [SMALL_STATE(713)] = 23052, + [SMALL_STATE(714)] = 23088, + [SMALL_STATE(715)] = 23135, + [SMALL_STATE(716)] = 23182, + [SMALL_STATE(717)] = 23231, + [SMALL_STATE(718)] = 23277, + [SMALL_STATE(719)] = 23323, + [SMALL_STATE(720)] = 23369, + [SMALL_STATE(721)] = 23415, + [SMALL_STATE(722)] = 23461, + [SMALL_STATE(723)] = 23507, + [SMALL_STATE(724)] = 23545, + [SMALL_STATE(725)] = 23591, + [SMALL_STATE(726)] = 23629, + [SMALL_STATE(727)] = 23675, + [SMALL_STATE(728)] = 23713, + [SMALL_STATE(729)] = 23751, + [SMALL_STATE(730)] = 23797, + [SMALL_STATE(731)] = 23829, + [SMALL_STATE(732)] = 23857, + [SMALL_STATE(733)] = 23889, + [SMALL_STATE(734)] = 23921, + [SMALL_STATE(735)] = 23953, + [SMALL_STATE(736)] = 23981, + [SMALL_STATE(737)] = 24007, + [SMALL_STATE(738)] = 24033, + [SMALL_STATE(739)] = 24059, + [SMALL_STATE(740)] = 24085, + [SMALL_STATE(741)] = 24111, + [SMALL_STATE(742)] = 24137, + [SMALL_STATE(743)] = 24163, + [SMALL_STATE(744)] = 24199, + [SMALL_STATE(745)] = 24225, + [SMALL_STATE(746)] = 24251, + [SMALL_STATE(747)] = 24277, + [SMALL_STATE(748)] = 24305, + [SMALL_STATE(749)] = 24331, + [SMALL_STATE(750)] = 24367, + [SMALL_STATE(751)] = 24393, + [SMALL_STATE(752)] = 24419, + [SMALL_STATE(753)] = 24445, + [SMALL_STATE(754)] = 24481, + [SMALL_STATE(755)] = 24517, + [SMALL_STATE(756)] = 24543, + [SMALL_STATE(757)] = 24580, + [SMALL_STATE(758)] = 24616, + [SMALL_STATE(759)] = 24652, + [SMALL_STATE(760)] = 24688, + [SMALL_STATE(761)] = 24724, + [SMALL_STATE(762)] = 24760, + [SMALL_STATE(763)] = 24796, + [SMALL_STATE(764)] = 24824, + [SMALL_STATE(765)] = 24855, + [SMALL_STATE(766)] = 24885, + [SMALL_STATE(767)] = 24915, + [SMALL_STATE(768)] = 24945, + [SMALL_STATE(769)] = 24975, + [SMALL_STATE(770)] = 25005, + [SMALL_STATE(771)] = 25035, + [SMALL_STATE(772)] = 25064, + [SMALL_STATE(773)] = 25093, + [SMALL_STATE(774)] = 25122, + [SMALL_STATE(775)] = 25142, + [SMALL_STATE(776)] = 25162, + [SMALL_STATE(777)] = 25182, + [SMALL_STATE(778)] = 25213, + [SMALL_STATE(779)] = 25228, + [SMALL_STATE(780)] = 25243, + [SMALL_STATE(781)] = 25266, + [SMALL_STATE(782)] = 25297, + [SMALL_STATE(783)] = 25320, + [SMALL_STATE(784)] = 25351, + [SMALL_STATE(785)] = 25366, + [SMALL_STATE(786)] = 25389, + [SMALL_STATE(787)] = 25412, + [SMALL_STATE(788)] = 25435, + [SMALL_STATE(789)] = 25458, + [SMALL_STATE(790)] = 25481, + [SMALL_STATE(791)] = 25504, + [SMALL_STATE(792)] = 25527, + [SMALL_STATE(793)] = 25558, + [SMALL_STATE(794)] = 25586, + [SMALL_STATE(795)] = 25606, + [SMALL_STATE(796)] = 25626, + [SMALL_STATE(797)] = 25654, + [SMALL_STATE(798)] = 25674, + [SMALL_STATE(799)] = 25694, + [SMALL_STATE(800)] = 25714, + [SMALL_STATE(801)] = 25742, + [SMALL_STATE(802)] = 25762, + [SMALL_STATE(803)] = 25782, + [SMALL_STATE(804)] = 25802, + [SMALL_STATE(805)] = 25822, + [SMALL_STATE(806)] = 25842, + [SMALL_STATE(807)] = 25862, + [SMALL_STATE(808)] = 25882, + [SMALL_STATE(809)] = 25902, + [SMALL_STATE(810)] = 25922, + [SMALL_STATE(811)] = 25942, + [SMALL_STATE(812)] = 25955, + [SMALL_STATE(813)] = 25968, + [SMALL_STATE(814)] = 25993, + [SMALL_STATE(815)] = 26010, + [SMALL_STATE(816)] = 26035, + [SMALL_STATE(817)] = 26048, + [SMALL_STATE(818)] = 26067, + [SMALL_STATE(819)] = 26086, + [SMALL_STATE(820)] = 26111, + [SMALL_STATE(821)] = 26124, + [SMALL_STATE(822)] = 26141, + [SMALL_STATE(823)] = 26154, + [SMALL_STATE(824)] = 26171, + [SMALL_STATE(825)] = 26188, + [SMALL_STATE(826)] = 26213, + [SMALL_STATE(827)] = 26235, + [SMALL_STATE(828)] = 26253, + [SMALL_STATE(829)] = 26275, + [SMALL_STATE(830)] = 26297, + [SMALL_STATE(831)] = 26317, + [SMALL_STATE(832)] = 26335, + [SMALL_STATE(833)] = 26347, + [SMALL_STATE(834)] = 26369, + [SMALL_STATE(835)] = 26387, + [SMALL_STATE(836)] = 26399, + [SMALL_STATE(837)] = 26421, + [SMALL_STATE(838)] = 26443, + [SMALL_STATE(839)] = 26465, + [SMALL_STATE(840)] = 26487, + [SMALL_STATE(841)] = 26499, + [SMALL_STATE(842)] = 26511, + [SMALL_STATE(843)] = 26523, + [SMALL_STATE(844)] = 26535, + [SMALL_STATE(845)] = 26553, + [SMALL_STATE(846)] = 26571, + [SMALL_STATE(847)] = 26583, + [SMALL_STATE(848)] = 26602, + [SMALL_STATE(849)] = 26619, + [SMALL_STATE(850)] = 26630, + [SMALL_STATE(851)] = 26647, + [SMALL_STATE(852)] = 26666, + [SMALL_STATE(853)] = 26677, + [SMALL_STATE(854)] = 26696, + [SMALL_STATE(855)] = 26707, + [SMALL_STATE(856)] = 26718, + [SMALL_STATE(857)] = 26735, + [SMALL_STATE(858)] = 26746, + [SMALL_STATE(859)] = 26763, + [SMALL_STATE(860)] = 26774, + [SMALL_STATE(861)] = 26785, + [SMALL_STATE(862)] = 26802, + [SMALL_STATE(863)] = 26818, + [SMALL_STATE(864)] = 26834, + [SMALL_STATE(865)] = 26844, + [SMALL_STATE(866)] = 26860, + [SMALL_STATE(867)] = 26876, + [SMALL_STATE(868)] = 26886, + [SMALL_STATE(869)] = 26900, + [SMALL_STATE(870)] = 26914, + [SMALL_STATE(871)] = 26924, + [SMALL_STATE(872)] = 26938, + [SMALL_STATE(873)] = 26948, + [SMALL_STATE(874)] = 26958, + [SMALL_STATE(875)] = 26974, + [SMALL_STATE(876)] = 26990, + [SMALL_STATE(877)] = 27000, + [SMALL_STATE(878)] = 27014, + [SMALL_STATE(879)] = 27030, + [SMALL_STATE(880)] = 27044, + [SMALL_STATE(881)] = 27060, + [SMALL_STATE(882)] = 27074, + [SMALL_STATE(883)] = 27088, + [SMALL_STATE(884)] = 27104, + [SMALL_STATE(885)] = 27118, + [SMALL_STATE(886)] = 27128, + [SMALL_STATE(887)] = 27144, + [SMALL_STATE(888)] = 27158, + [SMALL_STATE(889)] = 27168, + [SMALL_STATE(890)] = 27178, + [SMALL_STATE(891)] = 27194, + [SMALL_STATE(892)] = 27208, + [SMALL_STATE(893)] = 27218, + [SMALL_STATE(894)] = 27228, + [SMALL_STATE(895)] = 27244, + [SMALL_STATE(896)] = 27258, + [SMALL_STATE(897)] = 27274, + [SMALL_STATE(898)] = 27288, + [SMALL_STATE(899)] = 27302, + [SMALL_STATE(900)] = 27318, + [SMALL_STATE(901)] = 27332, + [SMALL_STATE(902)] = 27348, + [SMALL_STATE(903)] = 27364, + [SMALL_STATE(904)] = 27373, + [SMALL_STATE(905)] = 27384, + [SMALL_STATE(906)] = 27395, + [SMALL_STATE(907)] = 27408, + [SMALL_STATE(908)] = 27421, + [SMALL_STATE(909)] = 27434, + [SMALL_STATE(910)] = 27447, + [SMALL_STATE(911)] = 27460, + [SMALL_STATE(912)] = 27473, + [SMALL_STATE(913)] = 27486, + [SMALL_STATE(914)] = 27499, + [SMALL_STATE(915)] = 27512, + [SMALL_STATE(916)] = 27525, + [SMALL_STATE(917)] = 27538, + [SMALL_STATE(918)] = 27551, + [SMALL_STATE(919)] = 27564, + [SMALL_STATE(920)] = 27577, + [SMALL_STATE(921)] = 27590, + [SMALL_STATE(922)] = 27603, + [SMALL_STATE(923)] = 27616, + [SMALL_STATE(924)] = 27629, + [SMALL_STATE(925)] = 27642, + [SMALL_STATE(926)] = 27655, + [SMALL_STATE(927)] = 27668, + [SMALL_STATE(928)] = 27681, + [SMALL_STATE(929)] = 27694, + [SMALL_STATE(930)] = 27707, + [SMALL_STATE(931)] = 27720, + [SMALL_STATE(932)] = 27733, + [SMALL_STATE(933)] = 27746, + [SMALL_STATE(934)] = 27759, + [SMALL_STATE(935)] = 27772, + [SMALL_STATE(936)] = 27785, + [SMALL_STATE(937)] = 27798, + [SMALL_STATE(938)] = 27807, + [SMALL_STATE(939)] = 27820, + [SMALL_STATE(940)] = 27833, + [SMALL_STATE(941)] = 27846, + [SMALL_STATE(942)] = 27859, + [SMALL_STATE(943)] = 27872, + [SMALL_STATE(944)] = 27885, + [SMALL_STATE(945)] = 27895, + [SMALL_STATE(946)] = 27903, + [SMALL_STATE(947)] = 27911, + [SMALL_STATE(948)] = 27921, + [SMALL_STATE(949)] = 27931, + [SMALL_STATE(950)] = 27941, + [SMALL_STATE(951)] = 27951, + [SMALL_STATE(952)] = 27959, + [SMALL_STATE(953)] = 27967, + [SMALL_STATE(954)] = 27977, + [SMALL_STATE(955)] = 27987, + [SMALL_STATE(956)] = 27997, + [SMALL_STATE(957)] = 28007, + [SMALL_STATE(958)] = 28017, + [SMALL_STATE(959)] = 28025, + [SMALL_STATE(960)] = 28035, + [SMALL_STATE(961)] = 28045, + [SMALL_STATE(962)] = 28055, + [SMALL_STATE(963)] = 28065, + [SMALL_STATE(964)] = 28075, + [SMALL_STATE(965)] = 28085, + [SMALL_STATE(966)] = 28095, + [SMALL_STATE(967)] = 28105, + [SMALL_STATE(968)] = 28115, + [SMALL_STATE(969)] = 28125, + [SMALL_STATE(970)] = 28133, + [SMALL_STATE(971)] = 28143, + [SMALL_STATE(972)] = 28153, + [SMALL_STATE(973)] = 28161, + [SMALL_STATE(974)] = 28171, + [SMALL_STATE(975)] = 28181, + [SMALL_STATE(976)] = 28191, + [SMALL_STATE(977)] = 28201, + [SMALL_STATE(978)] = 28211, + [SMALL_STATE(979)] = 28219, + [SMALL_STATE(980)] = 28229, + [SMALL_STATE(981)] = 28239, + [SMALL_STATE(982)] = 28249, + [SMALL_STATE(983)] = 28259, + [SMALL_STATE(984)] = 28267, + [SMALL_STATE(985)] = 28277, + [SMALL_STATE(986)] = 28285, + [SMALL_STATE(987)] = 28293, + [SMALL_STATE(988)] = 28303, + [SMALL_STATE(989)] = 28313, + [SMALL_STATE(990)] = 28323, + [SMALL_STATE(991)] = 28333, + [SMALL_STATE(992)] = 28341, + [SMALL_STATE(993)] = 28351, + [SMALL_STATE(994)] = 28358, + [SMALL_STATE(995)] = 28365, + [SMALL_STATE(996)] = 28372, + [SMALL_STATE(997)] = 28379, + [SMALL_STATE(998)] = 28386, + [SMALL_STATE(999)] = 28393, + [SMALL_STATE(1000)] = 28400, + [SMALL_STATE(1001)] = 28407, + [SMALL_STATE(1002)] = 28414, + [SMALL_STATE(1003)] = 28421, + [SMALL_STATE(1004)] = 28428, + [SMALL_STATE(1005)] = 28435, + [SMALL_STATE(1006)] = 28442, + [SMALL_STATE(1007)] = 28449, + [SMALL_STATE(1008)] = 28456, + [SMALL_STATE(1009)] = 28463, + [SMALL_STATE(1010)] = 28470, + [SMALL_STATE(1011)] = 28477, + [SMALL_STATE(1012)] = 28484, + [SMALL_STATE(1013)] = 28491, + [SMALL_STATE(1014)] = 28498, + [SMALL_STATE(1015)] = 28505, + [SMALL_STATE(1016)] = 28512, + [SMALL_STATE(1017)] = 28519, + [SMALL_STATE(1018)] = 28526, + [SMALL_STATE(1019)] = 28533, + [SMALL_STATE(1020)] = 28540, + [SMALL_STATE(1021)] = 28547, + [SMALL_STATE(1022)] = 28554, + [SMALL_STATE(1023)] = 28561, + [SMALL_STATE(1024)] = 28568, + [SMALL_STATE(1025)] = 28575, + [SMALL_STATE(1026)] = 28582, + [SMALL_STATE(1027)] = 28589, + [SMALL_STATE(1028)] = 28596, + [SMALL_STATE(1029)] = 28603, + [SMALL_STATE(1030)] = 28610, + [SMALL_STATE(1031)] = 28617, + [SMALL_STATE(1032)] = 28624, + [SMALL_STATE(1033)] = 28631, + [SMALL_STATE(1034)] = 28638, + [SMALL_STATE(1035)] = 28645, + [SMALL_STATE(1036)] = 28652, + [SMALL_STATE(1037)] = 28659, + [SMALL_STATE(1038)] = 28666, + [SMALL_STATE(1039)] = 28673, + [SMALL_STATE(1040)] = 28680, + [SMALL_STATE(1041)] = 28687, + [SMALL_STATE(1042)] = 28694, + [SMALL_STATE(1043)] = 28701, + [SMALL_STATE(1044)] = 28708, + [SMALL_STATE(1045)] = 28715, + [SMALL_STATE(1046)] = 28722, + [SMALL_STATE(1047)] = 28729, + [SMALL_STATE(1048)] = 28736, + [SMALL_STATE(1049)] = 28743, + [SMALL_STATE(1050)] = 28750, + [SMALL_STATE(1051)] = 28757, + [SMALL_STATE(1052)] = 28764, + [SMALL_STATE(1053)] = 28771, + [SMALL_STATE(1054)] = 28778, + [SMALL_STATE(1055)] = 28785, + [SMALL_STATE(1056)] = 28792, + [SMALL_STATE(1057)] = 28799, + [SMALL_STATE(1058)] = 28806, + [SMALL_STATE(1059)] = 28813, + [SMALL_STATE(1060)] = 28820, + [SMALL_STATE(1061)] = 28827, + [SMALL_STATE(1062)] = 28834, + [SMALL_STATE(1063)] = 28841, + [SMALL_STATE(1064)] = 28848, + [SMALL_STATE(1065)] = 28855, + [SMALL_STATE(1066)] = 28862, + [SMALL_STATE(1067)] = 28869, + [SMALL_STATE(1068)] = 28876, + [SMALL_STATE(1069)] = 28883, + [SMALL_STATE(1070)] = 28890, + [SMALL_STATE(1071)] = 28897, + [SMALL_STATE(1072)] = 28904, + [SMALL_STATE(1073)] = 28911, + [SMALL_STATE(1074)] = 28918, + [SMALL_STATE(1075)] = 28925, + [SMALL_STATE(1076)] = 28932, + [SMALL_STATE(1077)] = 28939, + [SMALL_STATE(1078)] = 28946, + [SMALL_STATE(1079)] = 28953, + [SMALL_STATE(1080)] = 28960, + [SMALL_STATE(1081)] = 28967, + [SMALL_STATE(1082)] = 28974, + [SMALL_STATE(1083)] = 28981, + [SMALL_STATE(1084)] = 28988, + [SMALL_STATE(1085)] = 28995, + [SMALL_STATE(1086)] = 29002, + [SMALL_STATE(1087)] = 29009, + [SMALL_STATE(1088)] = 29016, + [SMALL_STATE(1089)] = 29023, + [SMALL_STATE(1090)] = 29030, + [SMALL_STATE(1091)] = 29037, + [SMALL_STATE(1092)] = 29044, + [SMALL_STATE(1093)] = 29051, + [SMALL_STATE(1094)] = 29058, + [SMALL_STATE(1095)] = 29065, + [SMALL_STATE(1096)] = 29072, + [SMALL_STATE(1097)] = 29079, + [SMALL_STATE(1098)] = 29086, + [SMALL_STATE(1099)] = 29093, + [SMALL_STATE(1100)] = 29100, + [SMALL_STATE(1101)] = 29107, + [SMALL_STATE(1102)] = 29114, + [SMALL_STATE(1103)] = 29121, + [SMALL_STATE(1104)] = 29128, + [SMALL_STATE(1105)] = 29135, + [SMALL_STATE(1106)] = 29142, + [SMALL_STATE(1107)] = 29149, + [SMALL_STATE(1108)] = 29156, + [SMALL_STATE(1109)] = 29163, + [SMALL_STATE(1110)] = 29170, + [SMALL_STATE(1111)] = 29177, + [SMALL_STATE(1112)] = 29184, + [SMALL_STATE(1113)] = 29191, + [SMALL_STATE(1114)] = 29198, + [SMALL_STATE(1115)] = 29205, + [SMALL_STATE(1116)] = 29212, + [SMALL_STATE(1117)] = 29219, + [SMALL_STATE(1118)] = 29226, + [SMALL_STATE(1119)] = 29233, + [SMALL_STATE(1120)] = 29240, + [SMALL_STATE(1121)] = 29247, + [SMALL_STATE(1122)] = 29254, + [SMALL_STATE(1123)] = 29261, + [SMALL_STATE(1124)] = 29268, + [SMALL_STATE(1125)] = 29275, + [SMALL_STATE(1126)] = 29282, + [SMALL_STATE(1127)] = 29289, + [SMALL_STATE(1128)] = 29296, + [SMALL_STATE(1129)] = 29303, + [SMALL_STATE(1130)] = 29310, + [SMALL_STATE(1131)] = 29317, + [SMALL_STATE(1132)] = 29324, + [SMALL_STATE(1133)] = 29331, + [SMALL_STATE(1134)] = 29338, + [SMALL_STATE(1135)] = 29345, + [SMALL_STATE(1136)] = 29352, + [SMALL_STATE(1137)] = 29359, + [SMALL_STATE(1138)] = 29366, + [SMALL_STATE(1139)] = 29373, + [SMALL_STATE(1140)] = 29380, + [SMALL_STATE(1141)] = 29387, + [SMALL_STATE(1142)] = 29394, + [SMALL_STATE(1143)] = 29401, + [SMALL_STATE(1144)] = 29408, + [SMALL_STATE(1145)] = 29415, + [SMALL_STATE(1146)] = 29422, + [SMALL_STATE(1147)] = 29429, + [SMALL_STATE(1148)] = 29436, + [SMALL_STATE(1149)] = 29443, + [SMALL_STATE(1150)] = 29450, + [SMALL_STATE(1151)] = 29457, + [SMALL_STATE(1152)] = 29464, + [SMALL_STATE(1153)] = 29471, + [SMALL_STATE(1154)] = 29478, + [SMALL_STATE(1155)] = 29485, + [SMALL_STATE(1156)] = 29492, + [SMALL_STATE(1157)] = 29499, + [SMALL_STATE(1158)] = 29506, + [SMALL_STATE(1159)] = 29513, + [SMALL_STATE(1160)] = 29520, }; static TSParseActionEntry ts_parse_actions[] = { @@ -57529,1504 +57729,1504 @@ static TSParseActionEntry ts_parse_actions[] = { [1] = {.count = 1, .reusable = false}, RECOVER(), [3] = {.count = 1, .reusable = true}, SHIFT_EXTRA(), [5] = {.count = 1, .reusable = true}, REDUCE(sym_translation_unit, 0), - [7] = {.count = 1, .reusable = false}, SHIFT(363), - [9] = {.count = 1, .reusable = false}, SHIFT(866), + [7] = {.count = 1, .reusable = false}, SHIFT(364), + [9] = {.count = 1, .reusable = false}, SHIFT(824), [11] = {.count = 1, .reusable = false}, SHIFT(1159), [13] = {.count = 1, .reusable = false}, SHIFT(1157), [15] = {.count = 1, .reusable = false}, SHIFT(1155), - [17] = {.count = 1, .reusable = false}, SHIFT(989), - [19] = {.count = 1, .reusable = true}, SHIFT(274), - [21] = {.count = 1, .reusable = false}, SHIFT(725), - [23] = {.count = 1, .reusable = false}, SHIFT(714), + [17] = {.count = 1, .reusable = false}, SHIFT(947), + [19] = {.count = 1, .reusable = true}, SHIFT(243), + [21] = {.count = 1, .reusable = false}, SHIFT(722), + [23] = {.count = 1, .reusable = false}, SHIFT(694), [25] = {.count = 1, .reusable = false}, SHIFT(1146), - [27] = {.count = 1, .reusable = true}, SHIFT(196), - [29] = {.count = 1, .reusable = true}, SHIFT(36), - [31] = {.count = 1, .reusable = true}, SHIFT(547), - [33] = {.count = 1, .reusable = false}, SHIFT(667), + [27] = {.count = 1, .reusable = true}, SHIFT(204), + [29] = {.count = 1, .reusable = true}, SHIFT(39), + [31] = {.count = 1, .reusable = true}, SHIFT(500), + [33] = {.count = 1, .reusable = false}, SHIFT(669), [35] = {.count = 1, .reusable = false}, SHIFT(668), - [37] = {.count = 1, .reusable = false}, SHIFT(707), - [39] = {.count = 1, .reusable = false}, SHIFT(739), - [41] = {.count = 1, .reusable = false}, SHIFT(904), - [43] = {.count = 1, .reusable = false}, SHIFT(921), - [45] = {.count = 1, .reusable = false}, SHIFT(925), - [47] = {.count = 1, .reusable = false}, SHIFT(954), - [49] = {.count = 1, .reusable = false}, SHIFT(969), - [51] = {.count = 1, .reusable = false}, SHIFT(540), + [37] = {.count = 1, .reusable = false}, SHIFT(712), + [39] = {.count = 1, .reusable = false}, SHIFT(743), + [41] = {.count = 1, .reusable = false}, SHIFT(909), + [43] = {.count = 1, .reusable = false}, SHIFT(923), + [45] = {.count = 1, .reusable = false}, SHIFT(911), + [47] = {.count = 1, .reusable = false}, SHIFT(955), + [49] = {.count = 1, .reusable = false}, SHIFT(957), + [51] = {.count = 1, .reusable = false}, SHIFT(511), [53] = {.count = 1, .reusable = false}, SHIFT(1112), - [55] = {.count = 1, .reusable = false}, SHIFT(947), - [57] = {.count = 1, .reusable = false}, SHIFT(69), + [55] = {.count = 1, .reusable = false}, SHIFT(959), + [57] = {.count = 1, .reusable = false}, SHIFT(108), [59] = {.count = 1, .reusable = false}, SHIFT(1103), - [61] = {.count = 1, .reusable = false}, SHIFT(462), + [61] = {.count = 1, .reusable = false}, SHIFT(413), [63] = {.count = 1, .reusable = false}, SHIFT(1096), [65] = {.count = 1, .reusable = false}, SHIFT(1093), [67] = {.count = 1, .reusable = false}, SHIFT(1092), - [69] = {.count = 1, .reusable = true}, SHIFT(546), - [71] = {.count = 1, .reusable = false}, SHIFT(546), - [73] = {.count = 1, .reusable = true}, SHIFT(545), - [75] = {.count = 1, .reusable = false}, SHIFT(544), - [77] = {.count = 1, .reusable = true}, SHIFT(592), - [79] = {.count = 1, .reusable = true}, SHIFT(972), - [81] = {.count = 1, .reusable = true}, SHIFT(896), - [83] = {.count = 1, .reusable = false}, SHIFT(592), - [85] = {.count = 1, .reusable = false}, SHIFT(362), - [87] = {.count = 1, .reusable = false}, SHIFT(901), + [69] = {.count = 1, .reusable = true}, SHIFT(513), + [71] = {.count = 1, .reusable = false}, SHIFT(513), + [73] = {.count = 1, .reusable = true}, SHIFT(510), + [75] = {.count = 1, .reusable = false}, SHIFT(507), + [77] = {.count = 1, .reusable = true}, SHIFT(594), + [79] = {.count = 1, .reusable = true}, SHIFT(967), + [81] = {.count = 1, .reusable = true}, SHIFT(871), + [83] = {.count = 1, .reusable = false}, SHIFT(594), + [85] = {.count = 1, .reusable = false}, SHIFT(372), + [87] = {.count = 1, .reusable = false}, SHIFT(814), [89] = {.count = 1, .reusable = false}, SHIFT(1098), [91] = {.count = 1, .reusable = false}, SHIFT(1099), - [93] = {.count = 1, .reusable = false}, SHIFT(184), + [93] = {.count = 1, .reusable = false}, SHIFT(174), [95] = {.count = 1, .reusable = false}, SHIFT(1100), - [97] = {.count = 1, .reusable = false}, SHIFT(40), - [99] = {.count = 1, .reusable = false}, SHIFT(1037), - [101] = {.count = 1, .reusable = false}, SHIFT(985), - [103] = {.count = 1, .reusable = true}, SHIFT(151), - [105] = {.count = 1, .reusable = false}, SHIFT(720), - [107] = {.count = 1, .reusable = false}, SHIFT(727), + [97] = {.count = 1, .reusable = false}, SHIFT(42), + [99] = {.count = 1, .reusable = false}, SHIFT(1110), + [101] = {.count = 1, .reusable = false}, SHIFT(989), + [103] = {.count = 1, .reusable = true}, SHIFT(145), + [105] = {.count = 1, .reusable = false}, SHIFT(717), + [107] = {.count = 1, .reusable = false}, SHIFT(673), [109] = {.count = 1, .reusable = true}, SHIFT(32), - [111] = {.count = 1, .reusable = false}, SHIFT(750), - [113] = {.count = 1, .reusable = false}, SHIFT(981), - [115] = {.count = 1, .reusable = false}, SHIFT(955), - [117] = {.count = 1, .reusable = false}, SHIFT(513), - [119] = {.count = 1, .reusable = false}, SHIFT(1070), - [121] = {.count = 1, .reusable = false}, SHIFT(975), - [123] = {.count = 1, .reusable = false}, SHIFT(76), + [111] = {.count = 1, .reusable = false}, SHIFT(753), + [113] = {.count = 1, .reusable = false}, SHIFT(987), + [115] = {.count = 1, .reusable = false}, SHIFT(963), + [117] = {.count = 1, .reusable = false}, SHIFT(540), + [119] = {.count = 1, .reusable = false}, SHIFT(1001), + [121] = {.count = 1, .reusable = false}, SHIFT(980), + [123] = {.count = 1, .reusable = false}, SHIFT(70), [125] = {.count = 1, .reusable = false}, SHIFT(1158), - [127] = {.count = 1, .reusable = false}, SHIFT(460), - [129] = {.count = 1, .reusable = false}, SHIFT(1068), - [131] = {.count = 1, .reusable = false}, SHIFT(1066), + [127] = {.count = 1, .reusable = false}, SHIFT(415), + [129] = {.count = 1, .reusable = false}, SHIFT(1060), + [131] = {.count = 1, .reusable = false}, SHIFT(1062), [133] = {.count = 1, .reusable = false}, SHIFT(1104), - [135] = {.count = 1, .reusable = true}, SHIFT(598), - [137] = {.count = 1, .reusable = false}, SHIFT(598), - [139] = {.count = 1, .reusable = false}, SHIFT(306), - [141] = {.count = 1, .reusable = false}, SHIFT(322), - [143] = {.count = 1, .reusable = false}, SHIFT(343), - [145] = {.count = 1, .reusable = false}, SHIFT(181), - [147] = {.count = 1, .reusable = false}, SHIFT(173), - [149] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 2, .production_id = 14), - [151] = {.count = 1, .reusable = false}, SHIFT(336), - [153] = {.count = 1, .reusable = false}, SHIFT(330), - [155] = {.count = 1, .reusable = false}, SHIFT(190), - [157] = {.count = 1, .reusable = false}, SHIFT(325), - [159] = {.count = 1, .reusable = false}, SHIFT(307), - [161] = {.count = 1, .reusable = false}, SHIFT(355), - [163] = {.count = 1, .reusable = false}, SHIFT(326), - [165] = {.count = 1, .reusable = false}, SHIFT(331), - [167] = {.count = 1, .reusable = false}, SHIFT(356), - [169] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 3, .production_id = 14), - [171] = {.count = 1, .reusable = false}, SHIFT(360), - [173] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(362), - [176] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(901), + [135] = {.count = 1, .reusable = true}, SHIFT(575), + [137] = {.count = 1, .reusable = false}, SHIFT(575), + [139] = {.count = 1, .reusable = false}, SHIFT(298), + [141] = {.count = 1, .reusable = false}, SHIFT(334), + [143] = {.count = 1, .reusable = false}, SHIFT(176), + [145] = {.count = 1, .reusable = false}, SHIFT(175), + [147] = {.count = 1, .reusable = false}, SHIFT(184), + [149] = {.count = 1, .reusable = false}, SHIFT(345), + [151] = {.count = 1, .reusable = false}, SHIFT(296), + [153] = {.count = 1, .reusable = false}, SHIFT(348), + [155] = {.count = 1, .reusable = false}, SHIFT(328), + [157] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 2, .production_id = 14), + [159] = {.count = 1, .reusable = false}, SHIFT(356), + [161] = {.count = 1, .reusable = false}, SHIFT(327), + [163] = {.count = 1, .reusable = false}, SHIFT(333), + [165] = {.count = 1, .reusable = false}, SHIFT(352), + [167] = {.count = 1, .reusable = false}, SHIFT(355), + [169] = {.count = 1, .reusable = false}, SHIFT(326), + [171] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 3, .production_id = 14), + [173] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(372), + [176] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(814), [179] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1098), [182] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1099), [185] = {.count = 1, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), [187] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1100), - [190] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(985), - [193] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(151), - [196] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(720), - [199] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(727), + [190] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(989), + [193] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(145), + [196] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(717), + [199] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(673), [202] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1146), - [205] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(196), + [205] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(204), [208] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(32), - [211] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(547), - [214] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(667), + [211] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(500), + [214] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(669), [217] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(668), - [220] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(707), - [223] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(750), - [226] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(904), - [229] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(921), - [232] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(925), - [235] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(981), - [238] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(955), - [241] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(513), - [244] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1070), - [247] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(975), - [250] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(76), + [220] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(712), + [223] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(753), + [226] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(909), + [229] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(923), + [232] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(911), + [235] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(987), + [238] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(963), + [241] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(540), + [244] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1001), + [247] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(980), + [250] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(70), [253] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1158), - [256] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(460), - [259] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1068), - [262] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1066), + [256] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(415), + [259] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1060), + [262] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1062), [265] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1104), - [268] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(546), - [271] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(546), - [274] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(545), - [277] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(544), - [280] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(598), - [283] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(972), - [286] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(896), - [289] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(598), - [292] = {.count = 1, .reusable = false}, SHIFT(365), - [294] = {.count = 1, .reusable = false}, SHIFT(897), - [296] = {.count = 1, .reusable = false}, SHIFT(1076), + [268] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(513), + [271] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(513), + [274] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(510), + [277] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(507), + [280] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(575), + [283] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(967), + [286] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(871), + [289] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(575), + [292] = {.count = 1, .reusable = false}, SHIFT(367), + [294] = {.count = 1, .reusable = false}, SHIFT(821), + [296] = {.count = 1, .reusable = false}, SHIFT(994), [298] = {.count = 1, .reusable = false}, SHIFT(1077), [300] = {.count = 1, .reusable = false}, SHIFT(1078), - [302] = {.count = 1, .reusable = false}, SHIFT(984), - [304] = {.count = 1, .reusable = true}, SHIFT(200), - [306] = {.count = 1, .reusable = false}, SHIFT(721), - [308] = {.count = 1, .reusable = false}, SHIFT(716), - [310] = {.count = 1, .reusable = true}, SHIFT(41), - [312] = {.count = 1, .reusable = true}, SHIFT(166), - [314] = {.count = 1, .reusable = false}, SHIFT(744), - [316] = {.count = 1, .reusable = false}, SHIFT(980), - [318] = {.count = 1, .reusable = false}, SHIFT(970), - [320] = {.count = 1, .reusable = false}, SHIFT(542), - [322] = {.count = 1, .reusable = false}, SHIFT(1153), - [324] = {.count = 1, .reusable = false}, SHIFT(979), - [326] = {.count = 1, .reusable = false}, SHIFT(85), + [302] = {.count = 1, .reusable = false}, SHIFT(982), + [304] = {.count = 1, .reusable = true}, SHIFT(222), + [306] = {.count = 1, .reusable = false}, SHIFT(726), + [308] = {.count = 1, .reusable = false}, SHIFT(710), + [310] = {.count = 1, .reusable = true}, SHIFT(37), + [312] = {.count = 1, .reusable = true}, SHIFT(336), + [314] = {.count = 1, .reusable = false}, SHIFT(749), + [316] = {.count = 1, .reusable = false}, SHIFT(948), + [318] = {.count = 1, .reusable = false}, SHIFT(968), + [320] = {.count = 1, .reusable = false}, SHIFT(506), + [322] = {.count = 1, .reusable = false}, SHIFT(1147), + [324] = {.count = 1, .reusable = false}, SHIFT(950), + [326] = {.count = 1, .reusable = false}, SHIFT(90), [328] = {.count = 1, .reusable = false}, SHIFT(1156), - [330] = {.count = 1, .reusable = false}, SHIFT(455), - [332] = {.count = 1, .reusable = false}, SHIFT(1152), - [334] = {.count = 1, .reusable = false}, SHIFT(1147), + [330] = {.count = 1, .reusable = false}, SHIFT(424), + [332] = {.count = 1, .reusable = false}, SHIFT(1140), + [334] = {.count = 1, .reusable = false}, SHIFT(1137), [336] = {.count = 1, .reusable = false}, SHIFT(1083), - [338] = {.count = 1, .reusable = true}, SHIFT(605), - [340] = {.count = 1, .reusable = false}, SHIFT(605), + [338] = {.count = 1, .reusable = true}, SHIFT(615), + [340] = {.count = 1, .reusable = false}, SHIFT(615), [342] = {.count = 1, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [344] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(363), - [347] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(866), + [344] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(364), + [347] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(824), [350] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1159), [353] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1157), [356] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1155), - [359] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(989), - [362] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(274), - [365] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(725), - [368] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(714), - [371] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(36), - [374] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(739), - [377] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(954), - [380] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(969), - [383] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(540), + [359] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(947), + [362] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(243), + [365] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(722), + [368] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(694), + [371] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(39), + [374] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(743), + [377] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(955), + [380] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(957), + [383] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(511), [386] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1112), - [389] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(947), - [392] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(69), + [389] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(959), + [392] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(108), [395] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1103), - [398] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(462), + [398] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(413), [401] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1096), [404] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1093), [407] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1092), - [410] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(592), - [413] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(592), - [416] = {.count = 1, .reusable = false}, SHIFT(361), - [418] = {.count = 1, .reusable = false}, SHIFT(885), - [420] = {.count = 1, .reusable = false}, SHIFT(1134), - [422] = {.count = 1, .reusable = false}, SHIFT(1118), - [424] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 2), - [426] = {.count = 1, .reusable = false}, SHIFT(1119), - [428] = {.count = 1, .reusable = false}, SHIFT(952), - [430] = {.count = 1, .reusable = true}, SHIFT(233), - [432] = {.count = 1, .reusable = false}, SHIFT(713), - [434] = {.count = 1, .reusable = false}, SHIFT(724), - [436] = {.count = 1, .reusable = true}, SHIFT(31), - [438] = {.count = 1, .reusable = false}, SHIFT(743), - [440] = {.count = 1, .reusable = false}, SHIFT(992), - [442] = {.count = 1, .reusable = false}, SHIFT(948), - [444] = {.count = 1, .reusable = false}, SHIFT(512), - [446] = {.count = 1, .reusable = false}, SHIFT(1009), - [448] = {.count = 1, .reusable = false}, SHIFT(966), - [450] = {.count = 1, .reusable = false}, SHIFT(106), - [452] = {.count = 1, .reusable = false}, SHIFT(1160), - [454] = {.count = 1, .reusable = false}, SHIFT(467), - [456] = {.count = 1, .reusable = false}, SHIFT(1011), - [458] = {.count = 1, .reusable = false}, SHIFT(1012), - [460] = {.count = 1, .reusable = false}, SHIFT(1123), - [462] = {.count = 1, .reusable = true}, SHIFT(593), - [464] = {.count = 1, .reusable = false}, SHIFT(593), - [466] = {.count = 1, .reusable = true}, SHIFT(323), - [468] = {.count = 1, .reusable = true}, SHIFT(305), - [470] = {.count = 1, .reusable = true}, SHIFT(285), - [472] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(361), - [475] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(885), - [478] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1134), - [481] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1118), - [484] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1119), - [487] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(952), - [490] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(233), - [493] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(713), - [496] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(724), - [499] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(31), - [502] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(743), - [505] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(992), - [508] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(948), - [511] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(512), - [514] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1009), - [517] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(966), - [520] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(106), - [523] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1160), - [526] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(467), - [529] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1011), - [532] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1012), - [535] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1123), - [538] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(593), - [541] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(593), - [544] = {.count = 1, .reusable = true}, SHIFT(345), - [546] = {.count = 1, .reusable = true}, SHIFT(333), - [548] = {.count = 1, .reusable = true}, SHIFT(193), - [550] = {.count = 1, .reusable = true}, SHIFT(235), - [552] = {.count = 1, .reusable = true}, SHIFT(169), - [554] = {.count = 1, .reusable = true}, SHIFT(350), - [556] = {.count = 1, .reusable = true}, REDUCE(sym_translation_unit, 1), - [558] = {.count = 1, .reusable = true}, SHIFT(224), - [560] = {.count = 1, .reusable = true}, SHIFT(246), - [562] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(365), - [565] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(897), - [568] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1076), - [571] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1077), - [574] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1078), - [577] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(984), - [580] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(200), - [583] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(721), - [586] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(716), - [589] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(41), - [592] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(744), - [595] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(980), - [598] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(970), - [601] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(542), - [604] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1153), - [607] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(979), - [610] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(85), - [613] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1156), - [616] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(455), - [619] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1152), - [622] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1147), - [625] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1083), - [628] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(605), - [631] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(605), - [634] = {.count = 1, .reusable = true}, SHIFT(172), - [636] = {.count = 1, .reusable = true}, SHIFT(176), - [638] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 1), - [640] = {.count = 1, .reusable = true}, SHIFT(256), - [642] = {.count = 1, .reusable = true}, SHIFT(332), - [644] = {.count = 1, .reusable = false}, SHIFT(367), - [646] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 4, .production_id = 8), + [410] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(594), + [413] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(594), + [416] = {.count = 1, .reusable = true}, SHIFT(259), + [418] = {.count = 1, .reusable = true}, SHIFT(331), + [420] = {.count = 1, .reusable = true}, SHIFT(323), + [422] = {.count = 1, .reusable = true}, SHIFT(305), + [424] = {.count = 1, .reusable = true}, SHIFT(309), + [426] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(370), + [429] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(823), + [432] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1134), + [435] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1118), + [438] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1119), + [441] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(976), + [444] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(202), + [447] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(720), + [450] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(678), + [453] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(29), + [456] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(754), + [459] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(992), + [462] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(956), + [465] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(509), + [468] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1004), + [471] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(944), + [474] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(116), + [477] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1160), + [480] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(426), + [483] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1006), + [486] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1007), + [489] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1123), + [492] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(605), + [495] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(605), + [498] = {.count = 1, .reusable = true}, SHIFT(203), + [500] = {.count = 1, .reusable = true}, SHIFT(196), + [502] = {.count = 1, .reusable = true}, SHIFT(228), + [504] = {.count = 1, .reusable = true}, SHIFT(153), + [506] = {.count = 1, .reusable = true}, SHIFT(332), + [508] = {.count = 1, .reusable = true}, SHIFT(164), + [510] = {.count = 1, .reusable = true}, REDUCE(sym_translation_unit, 1), + [512] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(367), + [515] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(821), + [518] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(994), + [521] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1077), + [524] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1078), + [527] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(982), + [530] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(222), + [533] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(726), + [536] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(710), + [539] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(37), + [542] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(749), + [545] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(948), + [548] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(968), + [551] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(506), + [554] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1147), + [557] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(950), + [560] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(90), + [563] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1156), + [566] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(424), + [569] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1140), + [572] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1137), + [575] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1083), + [578] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(615), + [581] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(615), + [584] = {.count = 1, .reusable = true}, SHIFT(229), + [586] = {.count = 1, .reusable = false}, SHIFT(370), + [588] = {.count = 1, .reusable = false}, SHIFT(823), + [590] = {.count = 1, .reusable = false}, SHIFT(1134), + [592] = {.count = 1, .reusable = false}, SHIFT(1118), + [594] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 2), + [596] = {.count = 1, .reusable = false}, SHIFT(1119), + [598] = {.count = 1, .reusable = false}, SHIFT(976), + [600] = {.count = 1, .reusable = true}, SHIFT(202), + [602] = {.count = 1, .reusable = false}, SHIFT(720), + [604] = {.count = 1, .reusable = false}, SHIFT(678), + [606] = {.count = 1, .reusable = true}, SHIFT(29), + [608] = {.count = 1, .reusable = false}, SHIFT(754), + [610] = {.count = 1, .reusable = false}, SHIFT(992), + [612] = {.count = 1, .reusable = false}, SHIFT(956), + [614] = {.count = 1, .reusable = false}, SHIFT(509), + [616] = {.count = 1, .reusable = false}, SHIFT(1004), + [618] = {.count = 1, .reusable = false}, SHIFT(944), + [620] = {.count = 1, .reusable = false}, SHIFT(116), + [622] = {.count = 1, .reusable = false}, SHIFT(1160), + [624] = {.count = 1, .reusable = false}, SHIFT(426), + [626] = {.count = 1, .reusable = false}, SHIFT(1006), + [628] = {.count = 1, .reusable = false}, SHIFT(1007), + [630] = {.count = 1, .reusable = false}, SHIFT(1123), + [632] = {.count = 1, .reusable = true}, SHIFT(605), + [634] = {.count = 1, .reusable = false}, SHIFT(605), + [636] = {.count = 1, .reusable = true}, SHIFT(294), + [638] = {.count = 1, .reusable = true}, SHIFT(186), + [640] = {.count = 1, .reusable = true}, SHIFT(178), + [642] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 1), + [644] = {.count = 1, .reusable = false}, SHIFT(371), + [646] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 2), [648] = {.count = 1, .reusable = false}, SHIFT(723), - [650] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 3), - [652] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 3, .production_id = 8), - [654] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(367), - [657] = {.count = 1, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), - [659] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(151), - [662] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(720), - [665] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(667), - [668] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1146), - [671] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(196), - [674] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(32), - [677] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(547), - [680] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(668), - [683] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(707), - [686] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(723), - [689] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(904), - [692] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(921), - [695] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(925), - [698] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(981), - [701] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(955), - [704] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(975), - [707] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(76), - [710] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1158), - [713] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(460), - [716] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1068), - [719] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1066), - [722] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1104), - [725] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(546), - [728] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(546), - [731] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(545), - [734] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(544), - [737] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(598), - [740] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(972), - [743] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(896), - [746] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(598), - [749] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 2), - [751] = {.count = 1, .reusable = false}, SHIFT(366), - [753] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(364), - [756] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(200), - [759] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(721), - [762] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(41), - [765] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), - [767] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(980), - [770] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(970), - [773] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(979), - [776] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(85), - [779] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1156), - [782] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(455), - [785] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1152), - [788] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1147), - [791] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1083), - [794] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(605), - [797] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(605), - [800] = {.count = 1, .reusable = false}, SHIFT(364), - [802] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 4, .production_id = 8), - [804] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(366), - [807] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(233), - [810] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(713), - [813] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(31), - [816] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(992), - [819] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(948), - [822] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(966), - [825] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(106), - [828] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1160), - [831] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(467), - [834] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1011), - [837] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1012), - [840] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1123), - [843] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(593), - [846] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(593), - [849] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 2), - [851] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 3, .production_id = 8), - [853] = {.count = 1, .reusable = false}, SHIFT(368), - [855] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(368), - [858] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(274), - [861] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(725), - [864] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(36), - [867] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(954), - [870] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(969), - [873] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(947), - [876] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(69), - [879] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1103), - [882] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(462), - [885] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1096), - [888] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1093), - [891] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1092), - [894] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(592), - [897] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(592), - [900] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 3), - [902] = {.count = 1, .reusable = false}, SHIFT(413), + [650] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(371), + [653] = {.count = 1, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), + [655] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(145), + [658] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(717), + [661] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(669), + [664] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1146), + [667] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(204), + [670] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(32), + [673] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(500), + [676] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(668), + [679] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(712), + [682] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(723), + [685] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(909), + [688] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(923), + [691] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(911), + [694] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(987), + [697] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(963), + [700] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(980), + [703] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(70), + [706] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1158), + [709] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(415), + [712] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1060), + [715] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1062), + [718] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1104), + [721] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(513), + [724] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(513), + [727] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(510), + [730] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(507), + [733] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(575), + [736] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(967), + [739] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(871), + [742] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(575), + [745] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 3), + [747] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 3, .production_id = 8), + [749] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 4, .production_id = 8), + [751] = {.count = 1, .reusable = false}, SHIFT(369), + [753] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 2), + [755] = {.count = 1, .reusable = false}, SHIFT(368), + [757] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(368), + [760] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(202), + [763] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(720), + [766] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(29), + [769] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(992), + [772] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(956), + [775] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(944), + [778] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(116), + [781] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1160), + [784] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(426), + [787] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1006), + [790] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1007), + [793] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1123), + [796] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(605), + [799] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(605), + [802] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 3), + [804] = {.count = 1, .reusable = false}, SHIFT(365), + [806] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(369), + [809] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(222), + [812] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(726), + [815] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(37), + [818] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), + [820] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(948), + [823] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(968), + [826] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(950), + [829] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(90), + [832] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1156), + [835] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(424), + [838] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1140), + [841] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1137), + [844] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1083), + [847] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(615), + [850] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(615), + [853] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 4, .production_id = 8), + [855] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 3, .production_id = 8), + [857] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(365), + [860] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(243), + [863] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(722), + [866] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(39), + [869] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(955), + [872] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(957), + [875] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(959), + [878] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(108), + [881] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1103), + [884] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(413), + [887] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1096), + [890] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1093), + [893] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1092), + [896] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(594), + [899] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(594), + [902] = {.count = 1, .reusable = false}, SHIFT(479), [904] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 4, .production_id = 41), - [906] = {.count = 1, .reusable = true}, SHIFT(219), - [908] = {.count = 1, .reusable = true}, SHIFT(388), - [910] = {.count = 1, .reusable = false}, SHIFT(547), + [906] = {.count = 1, .reusable = true}, SHIFT(250), + [908] = {.count = 1, .reusable = true}, SHIFT(361), + [910] = {.count = 1, .reusable = false}, SHIFT(500), [912] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 4, .production_id = 41), - [914] = {.count = 1, .reusable = false}, SHIFT(535), - [916] = {.count = 1, .reusable = true}, SHIFT(535), - [918] = {.count = 1, .reusable = true}, SHIFT(507), - [920] = {.count = 1, .reusable = false}, SHIFT(514), - [922] = {.count = 1, .reusable = true}, SHIFT(413), - [924] = {.count = 1, .reusable = false}, SHIFT(382), - [926] = {.count = 1, .reusable = true}, SHIFT(482), - [928] = {.count = 1, .reusable = true}, SHIFT(615), - [930] = {.count = 1, .reusable = false}, SHIFT(615), - [932] = {.count = 1, .reusable = true}, SHIFT(498), - [934] = {.count = 1, .reusable = true}, SHIFT(604), - [936] = {.count = 1, .reusable = false}, SHIFT(604), - [938] = {.count = 1, .reusable = true}, SHIFT(501), - [940] = {.count = 1, .reusable = true}, SHIFT(577), - [942] = {.count = 1, .reusable = false}, SHIFT(577), - [944] = {.count = 1, .reusable = true}, SHIFT(499), - [946] = {.count = 1, .reusable = true}, SHIFT(614), - [948] = {.count = 1, .reusable = false}, SHIFT(614), - [950] = {.count = 1, .reusable = false}, SHIFT(448), - [952] = {.count = 1, .reusable = false}, SHIFT(445), - [954] = {.count = 1, .reusable = false}, SHIFT(447), - [956] = {.count = 1, .reusable = false}, SHIFT(446), - [958] = {.count = 1, .reusable = false}, SHIFT(440), - [960] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5, .production_id = 57), - [962] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5, .production_id = 57), - [964] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 3, .production_id = 21), - [966] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 3, .production_id = 21), - [968] = {.count = 1, .reusable = false}, SHIFT(105), - [970] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 3, .production_id = 27), - [972] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 3, .production_id = 27), - [974] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8, .production_id = 72), - [976] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8, .production_id = 72), - [978] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7, .production_id = 64), - [980] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7, .production_id = 64), - [982] = {.count = 1, .reusable = false}, REDUCE(sym_labeled_statement, 3, .production_id = 25), - [984] = {.count = 1, .reusable = true}, REDUCE(sym_labeled_statement, 3, .production_id = 25), - [986] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6, .production_id = 64), - [988] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6, .production_id = 64), - [990] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8, .production_id = 73), - [992] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8, .production_id = 73), - [994] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 9, .production_id = 75), - [996] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 9, .production_id = 75), - [998] = {.count = 1, .reusable = false}, REDUCE(sym_goto_statement, 3, .production_id = 23), - [1000] = {.count = 1, .reusable = true}, REDUCE(sym_goto_statement, 3, .production_id = 23), - [1002] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7, .production_id = 70), - [1004] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7, .production_id = 70), - [1006] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6), - [1008] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6), - [1010] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 6, .production_id = 61), - [1012] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 6, .production_id = 61), - [1014] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 3), - [1016] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 3), - [1018] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 1), - [1020] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 1), - [1022] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 5, .production_id = 52), - [1024] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 5, .production_id = 52), - [1026] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 2), - [1028] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 2), - [1030] = {.count = 1, .reusable = false}, REDUCE(sym_break_statement, 2), - [1032] = {.count = 1, .reusable = true}, REDUCE(sym_break_statement, 2), - [1034] = {.count = 1, .reusable = false}, REDUCE(sym_continue_statement, 2), - [1036] = {.count = 1, .reusable = true}, REDUCE(sym_continue_statement, 2), - [1038] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 4, .production_id = 36), - [1040] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 4, .production_id = 36), - [1042] = {.count = 1, .reusable = false}, REDUCE(sym_do_statement, 5, .production_id = 58), - [1044] = {.count = 1, .reusable = true}, REDUCE(sym_do_statement, 5, .production_id = 58), - [1046] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7, .production_id = 69), - [1048] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7, .production_id = 69), - [1050] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8, .production_id = 71), - [1052] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8, .production_id = 71), - [1054] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 4, .production_id = 46), - [1056] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 4, .production_id = 46), - [1058] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7, .production_id = 67), - [1060] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7, .production_id = 67), - [1062] = {.count = 1, .reusable = false}, REDUCE(sym_switch_statement, 3, .production_id = 22), - [1064] = {.count = 1, .reusable = true}, REDUCE(sym_switch_statement, 3, .production_id = 22), - [1066] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 5, .production_id = 53), - [1068] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 5, .production_id = 53), - [1070] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 3, .production_id = 22), - [1072] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 3, .production_id = 22), - [1074] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8, .production_id = 74), - [1076] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8, .production_id = 74), - [1078] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), - [1080] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), - [1082] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7, .production_id = 68), - [1084] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7, .production_id = 68), - [1086] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 2), - [1088] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 2), - [1090] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 2), - [1092] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 2), - [1094] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 2, .production_id = 4), - [1096] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 2, .production_id = 4), - [1098] = {.count = 1, .reusable = false}, REDUCE(sym_linkage_specification, 3, .production_id = 16), - [1100] = {.count = 1, .reusable = true}, REDUCE(sym_linkage_specification, 3, .production_id = 16), - [1102] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 2), - [1104] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 2), - [1106] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 3, .production_id = 13), - [1108] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 3, .production_id = 13), - [1110] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 3, .production_id = 15), - [1112] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 3, .production_id = 15), - [1114] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 3, .production_id = 13), - [1116] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 3, .production_id = 13), - [1118] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 3), - [1120] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 3), - [1122] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 4, .production_id = 32), - [1124] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 4, .production_id = 32), - [1126] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3, .production_id = 28), - [1128] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3, .production_id = 28), - [1130] = {.count = 1, .reusable = false}, REDUCE(sym_string_literal, 3), - [1132] = {.count = 1, .reusable = true}, REDUCE(sym_string_literal, 3), - [1134] = {.count = 1, .reusable = false}, REDUCE(sym__empty_declaration, 2), - [1136] = {.count = 1, .reusable = true}, REDUCE(sym__empty_declaration, 2), - [1138] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 3, .production_id = 14), - [1140] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 3, .production_id = 14), - [1142] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_include, 2, .production_id = 3), - [1144] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_include, 2, .production_id = 3), + [914] = {.count = 1, .reusable = false}, SHIFT(497), + [916] = {.count = 1, .reusable = true}, SHIFT(497), + [918] = {.count = 1, .reusable = true}, SHIFT(498), + [920] = {.count = 1, .reusable = false}, SHIFT(499), + [922] = {.count = 1, .reusable = true}, SHIFT(479), + [924] = {.count = 1, .reusable = false}, SHIFT(395), + [926] = {.count = 1, .reusable = true}, SHIFT(454), + [928] = {.count = 1, .reusable = true}, SHIFT(602), + [930] = {.count = 1, .reusable = false}, SHIFT(602), + [932] = {.count = 1, .reusable = true}, SHIFT(483), + [934] = {.count = 1, .reusable = true}, SHIFT(591), + [936] = {.count = 1, .reusable = false}, SHIFT(591), + [938] = {.count = 1, .reusable = true}, SHIFT(459), + [940] = {.count = 1, .reusable = true}, SHIFT(617), + [942] = {.count = 1, .reusable = false}, SHIFT(617), + [944] = {.count = 1, .reusable = true}, SHIFT(467), + [946] = {.count = 1, .reusable = true}, SHIFT(616), + [948] = {.count = 1, .reusable = false}, SHIFT(616), + [950] = {.count = 1, .reusable = false}, SHIFT(547), + [952] = {.count = 1, .reusable = false}, SHIFT(546), + [954] = {.count = 1, .reusable = false}, SHIFT(545), + [956] = {.count = 1, .reusable = false}, SHIFT(544), + [958] = {.count = 1, .reusable = false}, SHIFT(505), + [960] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7, .production_id = 67), + [962] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7, .production_id = 67), + [964] = {.count = 1, .reusable = false}, REDUCE(sym_switch_statement, 3, .production_id = 22), + [966] = {.count = 1, .reusable = true}, REDUCE(sym_switch_statement, 3, .production_id = 22), + [968] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 4, .production_id = 36), + [970] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 4, .production_id = 36), + [972] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 3, .production_id = 27), + [974] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 3, .production_id = 27), + [976] = {.count = 1, .reusable = false}, REDUCE(sym_labeled_statement, 3, .production_id = 25), + [978] = {.count = 1, .reusable = true}, REDUCE(sym_labeled_statement, 3, .production_id = 25), + [980] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7, .production_id = 69), + [982] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7, .production_id = 69), + [984] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 2), + [986] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 2), + [988] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7, .production_id = 70), + [990] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7, .production_id = 70), + [992] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 1), + [994] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 1), + [996] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 4, .production_id = 46), + [998] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 4, .production_id = 46), + [1000] = {.count = 1, .reusable = false}, REDUCE(sym_break_statement, 2), + [1002] = {.count = 1, .reusable = true}, REDUCE(sym_break_statement, 2), + [1004] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8, .production_id = 72), + [1006] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8, .production_id = 72), + [1008] = {.count = 1, .reusable = false}, REDUCE(sym_continue_statement, 2), + [1010] = {.count = 1, .reusable = true}, REDUCE(sym_continue_statement, 2), + [1012] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7, .production_id = 68), + [1014] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7, .production_id = 68), + [1016] = {.count = 1, .reusable = false}, REDUCE(sym_goto_statement, 3, .production_id = 23), + [1018] = {.count = 1, .reusable = true}, REDUCE(sym_goto_statement, 3, .production_id = 23), + [1020] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 6, .production_id = 61), + [1022] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 6, .production_id = 61), + [1024] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 2), + [1026] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 2), + [1028] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8, .production_id = 71), + [1030] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8, .production_id = 71), + [1032] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8, .production_id = 73), + [1034] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8, .production_id = 73), + [1036] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 3), + [1038] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 3), + [1040] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 2), + [1042] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 2), + [1044] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5, .production_id = 57), + [1046] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5, .production_id = 57), + [1048] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6, .production_id = 64), + [1050] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6, .production_id = 64), + [1052] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 3, .production_id = 22), + [1054] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 3, .production_id = 22), + [1056] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6), + [1058] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6), + [1060] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7, .production_id = 64), + [1062] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7, .production_id = 64), + [1064] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 5, .production_id = 53), + [1066] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 5, .production_id = 53), + [1068] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), + [1070] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), + [1072] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 3, .production_id = 21), + [1074] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 3, .production_id = 21), + [1076] = {.count = 1, .reusable = false}, SHIFT(69), + [1078] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 5, .production_id = 52), + [1080] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 5, .production_id = 52), + [1082] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 9, .production_id = 75), + [1084] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 9, .production_id = 75), + [1086] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8, .production_id = 74), + [1088] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8, .production_id = 74), + [1090] = {.count = 1, .reusable = false}, REDUCE(sym_do_statement, 5, .production_id = 58), + [1092] = {.count = 1, .reusable = true}, REDUCE(sym_do_statement, 5, .production_id = 58), + [1094] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_include, 2, .production_id = 3), + [1096] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_include, 2, .production_id = 3), + [1098] = {.count = 1, .reusable = false}, REDUCE(sym_string_literal, 2), + [1100] = {.count = 1, .reusable = true}, REDUCE(sym_string_literal, 2), + [1102] = {.count = 1, .reusable = false}, REDUCE(sym_linkage_specification, 3, .production_id = 16), + [1104] = {.count = 1, .reusable = true}, REDUCE(sym_linkage_specification, 3, .production_id = 16), + [1106] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 3, .production_id = 15), + [1108] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 3, .production_id = 15), + [1110] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 4, .production_id = 13), + [1112] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 4, .production_id = 13), + [1114] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 3, .production_id = 13), + [1116] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 3, .production_id = 13), + [1118] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 3, .production_id = 14), + [1120] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 3, .production_id = 14), + [1122] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 3, .production_id = 13), + [1124] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 3, .production_id = 13), + [1126] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 3), + [1128] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 3), + [1130] = {.count = 1, .reusable = false}, REDUCE(sym__empty_declaration, 2), + [1132] = {.count = 1, .reusable = true}, REDUCE(sym__empty_declaration, 2), + [1134] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 5, .production_id = 51), + [1136] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 5, .production_id = 51), + [1138] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 5, .production_id = 50), + [1140] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 5, .production_id = 50), + [1142] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 5, .production_id = 49), + [1144] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 5, .production_id = 49), [1146] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 4, .production_id = 35), [1148] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 4, .production_id = 35), [1150] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 4, .production_id = 14), [1152] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 4, .production_id = 14), - [1154] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 4, .production_id = 34), - [1156] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 4, .production_id = 34), - [1158] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 5, .production_id = 49), - [1160] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 5, .production_id = 49), - [1162] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 4, .production_id = 33), - [1164] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 4, .production_id = 33), - [1166] = {.count = 1, .reusable = false}, REDUCE(sym_string_literal, 2), - [1168] = {.count = 1, .reusable = true}, REDUCE(sym_string_literal, 2), - [1170] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 5, .production_id = 51), - [1172] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 5, .production_id = 51), - [1174] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 4, .production_id = 13), - [1176] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 4, .production_id = 13), - [1178] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 5, .production_id = 50), - [1180] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 5, .production_id = 50), - [1182] = {.count = 1, .reusable = false}, SHIFT(435), + [1154] = {.count = 1, .reusable = false}, REDUCE(sym_string_literal, 3), + [1156] = {.count = 1, .reusable = true}, REDUCE(sym_string_literal, 3), + [1158] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 2), + [1160] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 2), + [1162] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3, .production_id = 28), + [1164] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3, .production_id = 28), + [1166] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 4, .production_id = 32), + [1168] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 4, .production_id = 32), + [1170] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 2, .production_id = 4), + [1172] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 2, .production_id = 4), + [1174] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 4, .production_id = 33), + [1176] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 4, .production_id = 33), + [1178] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 4, .production_id = 34), + [1180] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 4, .production_id = 34), + [1182] = {.count = 1, .reusable = false}, SHIFT(494), [1184] = {.count = 1, .reusable = false}, SHIFT(764), - [1186] = {.count = 1, .reusable = false}, SHIFT(760), + [1186] = {.count = 1, .reusable = false}, SHIFT(761), [1188] = {.count = 1, .reusable = true}, SHIFT(579), [1190] = {.count = 1, .reusable = false}, SHIFT(579), - [1192] = {.count = 1, .reusable = false}, SHIFT(109), - [1194] = {.count = 1, .reusable = false}, SHIFT(94), - [1196] = {.count = 1, .reusable = false}, SHIFT(86), - [1198] = {.count = 1, .reusable = false}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [1200] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1), - [1202] = {.count = 2, .reusable = true}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), - [1205] = {.count = 3, .reusable = true}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), SHIFT(710), - [1209] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), - [1212] = {.count = 1, .reusable = false}, SHIFT(543), - [1214] = {.count = 1, .reusable = true}, SHIFT(79), - [1216] = {.count = 1, .reusable = true}, SHIFT(543), - [1218] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1), - [1220] = {.count = 1, .reusable = true}, SHIFT(89), - [1222] = {.count = 1, .reusable = true}, SHIFT(103), - [1224] = {.count = 1, .reusable = true}, SHIFT(117), - [1226] = {.count = 1, .reusable = false}, SHIFT(738), - [1228] = {.count = 1, .reusable = false}, SHIFT(1135), - [1230] = {.count = 1, .reusable = false}, SHIFT(1089), - [1232] = {.count = 1, .reusable = false}, SHIFT(681), - [1234] = {.count = 1, .reusable = false}, SHIFT(1090), - [1236] = {.count = 1, .reusable = false}, SHIFT(396), - [1238] = {.count = 1, .reusable = false}, SHIFT(1017), - [1240] = {.count = 1, .reusable = false}, SHIFT(962), - [1242] = {.count = 1, .reusable = false}, SHIFT(676), - [1244] = {.count = 1, .reusable = false}, SHIFT(690), - [1246] = {.count = 1, .reusable = false}, SHIFT(692), - [1248] = {.count = 1, .reusable = false}, SHIFT(629), - [1250] = {.count = 1, .reusable = false}, SHIFT(678), - [1252] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 14), - [1254] = {.count = 1, .reusable = false}, SHIFT(687), - [1256] = {.count = 1, .reusable = false}, SHIFT(627), - [1258] = {.count = 1, .reusable = false}, SHIFT(671), - [1260] = {.count = 1, .reusable = false}, SHIFT(680), - [1262] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_field_declaration_list, 2, .production_id = 14), - [1264] = {.count = 1, .reusable = false}, SHIFT(620), - [1266] = {.count = 1, .reusable = false}, SHIFT(621), - [1268] = {.count = 1, .reusable = false}, SHIFT(759), - [1270] = {.count = 1, .reusable = true}, SHIFT(910), - [1272] = {.count = 1, .reusable = true}, SHIFT(786), - [1274] = {.count = 1, .reusable = true}, SHIFT(384), - [1276] = {.count = 1, .reusable = true}, SHIFT(712), - [1278] = {.count = 1, .reusable = true}, SHIFT(416), - [1280] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(738), - [1283] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1135), - [1286] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1089), - [1289] = {.count = 1, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [1291] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1090), - [1294] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(962), - [1297] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(667), - [1300] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1146), - [1303] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(668), - [1306] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(707), - [1309] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(723), - [1312] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(904), - [1315] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(921), - [1318] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(925), - [1321] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1323] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1325] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(896), - [1328] = {.count = 1, .reusable = true}, SHIFT(999), - [1330] = {.count = 1, .reusable = true}, SHIFT(437), - [1332] = {.count = 1, .reusable = true}, SHIFT(511), - [1334] = {.count = 1, .reusable = false}, SHIFT(1003), - [1336] = {.count = 1, .reusable = true}, SHIFT(571), - [1338] = {.count = 1, .reusable = false}, SHIFT(571), - [1340] = {.count = 1, .reusable = true}, REDUCE(sym_concatenated_string, 2), - [1342] = {.count = 1, .reusable = false}, REDUCE(sym_concatenated_string, 2), - [1344] = {.count = 1, .reusable = false}, SHIFT(1136), - [1346] = {.count = 1, .reusable = false}, SHIFT(1108), - [1348] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), - [1350] = {.count = 1, .reusable = false}, SHIFT(1109), - [1352] = {.count = 1, .reusable = false}, SHIFT(987), - [1354] = {.count = 1, .reusable = true}, SHIFT(433), - [1356] = {.count = 1, .reusable = true}, SHIFT(590), - [1358] = {.count = 1, .reusable = false}, SHIFT(590), - [1360] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1136), - [1363] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1108), - [1366] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1109), - [1369] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(987), - [1372] = {.count = 1, .reusable = false}, SHIFT(1117), - [1374] = {.count = 1, .reusable = false}, SHIFT(1087), - [1376] = {.count = 1, .reusable = false}, SHIFT(1091), - [1378] = {.count = 1, .reusable = false}, SHIFT(990), - [1380] = {.count = 1, .reusable = true}, SHIFT(752), - [1382] = {.count = 1, .reusable = true}, SHIFT(444), - [1384] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1117), - [1387] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1087), - [1390] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1091), - [1393] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(990), - [1396] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [1398] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), - [1400] = {.count = 1, .reusable = true}, SHIFT(740), - [1402] = {.count = 1, .reusable = true}, SHIFT(401), - [1404] = {.count = 1, .reusable = true}, SHIFT(757), - [1406] = {.count = 1, .reusable = true}, SHIFT(486), - [1408] = {.count = 1, .reusable = true}, SHIFT(848), - [1410] = {.count = 1, .reusable = false}, SHIFT(708), - [1412] = {.count = 1, .reusable = true}, SHIFT(642), - [1414] = {.count = 1, .reusable = false}, SHIFT(642), - [1416] = {.count = 1, .reusable = true}, REDUCE(sym_binary_expression, 3, .production_id = 30), - [1418] = {.count = 1, .reusable = true}, SHIFT(491), - [1420] = {.count = 1, .reusable = false}, SHIFT(519), - [1422] = {.count = 1, .reusable = true}, SHIFT(536), - [1424] = {.count = 1, .reusable = false}, REDUCE(sym_binary_expression, 3, .production_id = 30), - [1426] = {.count = 1, .reusable = false}, SHIFT(520), - [1428] = {.count = 1, .reusable = false}, SHIFT(521), - [1430] = {.count = 1, .reusable = true}, SHIFT(523), - [1432] = {.count = 1, .reusable = false}, SHIFT(524), - [1434] = {.count = 1, .reusable = false}, SHIFT(525), - [1436] = {.count = 1, .reusable = true}, SHIFT(526), - [1438] = {.count = 1, .reusable = false}, SHIFT(527), - [1440] = {.count = 1, .reusable = true}, SHIFT(527), - [1442] = {.count = 1, .reusable = false}, SHIFT(508), - [1444] = {.count = 1, .reusable = true}, SHIFT(443), - [1446] = {.count = 1, .reusable = true}, SHIFT(997), - [1448] = {.count = 1, .reusable = true}, REDUCE(sym_assignment_expression, 3, .production_id = 24), - [1450] = {.count = 1, .reusable = false}, REDUCE(sym_assignment_expression, 3, .production_id = 24), - [1452] = {.count = 1, .reusable = true}, SHIFT(522), - [1454] = {.count = 1, .reusable = true}, SHIFT(485), - [1456] = {.count = 1, .reusable = true}, SHIFT(830), - [1458] = {.count = 1, .reusable = true}, SHIFT(657), - [1460] = {.count = 1, .reusable = false}, SHIFT(657), - [1462] = {.count = 1, .reusable = true}, SHIFT(481), - [1464] = {.count = 1, .reusable = true}, SHIFT(850), - [1466] = {.count = 1, .reusable = true}, SHIFT(638), - [1468] = {.count = 1, .reusable = false}, SHIFT(638), - [1470] = {.count = 1, .reusable = true}, SHIFT(489), - [1472] = {.count = 1, .reusable = true}, SHIFT(839), - [1474] = {.count = 1, .reusable = true}, SHIFT(639), - [1476] = {.count = 1, .reusable = false}, SHIFT(639), - [1478] = {.count = 1, .reusable = true}, SHIFT(503), - [1480] = {.count = 1, .reusable = true}, SHIFT(861), - [1482] = {.count = 1, .reusable = true}, SHIFT(635), - [1484] = {.count = 1, .reusable = false}, SHIFT(635), - [1486] = {.count = 1, .reusable = true}, SHIFT(504), - [1488] = {.count = 1, .reusable = true}, SHIFT(876), - [1490] = {.count = 1, .reusable = true}, SHIFT(634), - [1492] = {.count = 1, .reusable = false}, SHIFT(634), - [1494] = {.count = 1, .reusable = true}, REDUCE(sym_cast_expression, 4, .production_id = 39), - [1496] = {.count = 1, .reusable = false}, REDUCE(sym_cast_expression, 4, .production_id = 39), - [1498] = {.count = 1, .reusable = true}, SHIFT(487), - [1500] = {.count = 1, .reusable = true}, SHIFT(870), - [1502] = {.count = 1, .reusable = true}, SHIFT(643), - [1504] = {.count = 1, .reusable = false}, SHIFT(643), - [1506] = {.count = 1, .reusable = true}, SHIFT(506), - [1508] = {.count = 1, .reusable = true}, SHIFT(889), - [1510] = {.count = 1, .reusable = true}, SHIFT(650), - [1512] = {.count = 1, .reusable = false}, SHIFT(650), - [1514] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), - [1516] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), - [1518] = {.count = 1, .reusable = true}, SHIFT(493), - [1520] = {.count = 1, .reusable = true}, SHIFT(819), - [1522] = {.count = 1, .reusable = true}, SHIFT(641), - [1524] = {.count = 1, .reusable = false}, SHIFT(641), - [1526] = {.count = 1, .reusable = true}, REDUCE(sym_conditional_expression, 5, .production_id = 60), - [1528] = {.count = 1, .reusable = false}, REDUCE(sym_conditional_expression, 5, .production_id = 60), - [1530] = {.count = 1, .reusable = true}, SHIFT(538), - [1532] = {.count = 1, .reusable = true}, REDUCE(sym_update_expression, 2, .production_id = 5), - [1534] = {.count = 1, .reusable = false}, REDUCE(sym_update_expression, 2, .production_id = 5), - [1536] = {.count = 1, .reusable = true}, REDUCE(sym_unary_expression, 2, .production_id = 5), - [1538] = {.count = 1, .reusable = false}, REDUCE(sym_unary_expression, 2, .production_id = 5), - [1540] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), - [1542] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), - [1544] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_expression, 2, .production_id = 5), - [1546] = {.count = 1, .reusable = false}, REDUCE(sym_pointer_expression, 2, .production_id = 5), - [1548] = {.count = 1, .reusable = true}, SHIFT(483), - [1550] = {.count = 1, .reusable = true}, SHIFT(821), - [1552] = {.count = 1, .reusable = true}, SHIFT(637), - [1554] = {.count = 1, .reusable = false}, SHIFT(637), - [1556] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 3), - [1558] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 3), - [1560] = {.count = 1, .reusable = true}, REDUCE(sym_char_literal, 3), - [1562] = {.count = 1, .reusable = false}, REDUCE(sym_char_literal, 3), - [1564] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_expression, 4, .production_id = 48), - [1566] = {.count = 1, .reusable = false}, REDUCE(sym_subscript_expression, 4, .production_id = 48), - [1568] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 5), - [1570] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 5), - [1572] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 3), - [1574] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 3), - [1576] = {.count = 1, .reusable = true}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [1578] = {.count = 1, .reusable = true}, REDUCE(sym_compound_literal_expression, 4, .production_id = 39), - [1580] = {.count = 1, .reusable = false}, REDUCE(sym_compound_literal_expression, 4, .production_id = 39), - [1582] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 2), - [1584] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 2), - [1586] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 2), - [1588] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 2), - [1590] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 4), - [1592] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 4), - [1594] = {.count = 1, .reusable = true}, REDUCE(sym_call_expression, 2, .production_id = 10), - [1596] = {.count = 1, .reusable = false}, REDUCE(sym_call_expression, 2, .production_id = 10), - [1598] = {.count = 1, .reusable = true}, REDUCE(sym_field_expression, 3, .production_id = 31), - [1600] = {.count = 1, .reusable = false}, REDUCE(sym_field_expression, 3, .production_id = 31), - [1602] = {.count = 1, .reusable = true}, REDUCE(sym_update_expression, 2, .production_id = 9), - [1604] = {.count = 1, .reusable = false}, REDUCE(sym_update_expression, 2, .production_id = 9), - [1606] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 4), - [1608] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 4), - [1610] = {.count = 1, .reusable = true}, SHIFT(83), - [1612] = {.count = 1, .reusable = true}, SHIFT(581), - [1614] = {.count = 1, .reusable = false}, SHIFT(581), - [1616] = {.count = 1, .reusable = true}, SHIFT(135), - [1618] = {.count = 1, .reusable = true}, SHIFT(573), - [1620] = {.count = 1, .reusable = false}, SHIFT(573), - [1622] = {.count = 1, .reusable = true}, SHIFT(133), - [1624] = {.count = 1, .reusable = true}, SHIFT(595), - [1626] = {.count = 1, .reusable = false}, SHIFT(595), - [1628] = {.count = 1, .reusable = true}, SHIFT(84), - [1630] = {.count = 1, .reusable = true}, SHIFT(610), - [1632] = {.count = 1, .reusable = false}, SHIFT(610), - [1634] = {.count = 1, .reusable = true}, SHIFT(108), - [1636] = {.count = 1, .reusable = true}, SHIFT(601), - [1638] = {.count = 1, .reusable = false}, SHIFT(601), - [1640] = {.count = 1, .reusable = true}, SHIFT(264), - [1642] = {.count = 1, .reusable = true}, SHIFT(578), - [1644] = {.count = 1, .reusable = false}, SHIFT(578), - [1646] = {.count = 1, .reusable = true}, SHIFT(81), - [1648] = {.count = 1, .reusable = true}, SHIFT(602), - [1650] = {.count = 1, .reusable = false}, SHIFT(602), - [1652] = {.count = 1, .reusable = true}, SHIFT(92), - [1654] = {.count = 1, .reusable = true}, SHIFT(603), - [1656] = {.count = 1, .reusable = false}, SHIFT(603), - [1658] = {.count = 1, .reusable = true}, SHIFT(68), - [1660] = {.count = 1, .reusable = true}, SHIFT(609), - [1662] = {.count = 1, .reusable = false}, SHIFT(609), - [1664] = {.count = 1, .reusable = true}, SHIFT(82), - [1666] = {.count = 1, .reusable = true}, SHIFT(599), - [1668] = {.count = 1, .reusable = false}, SHIFT(599), - [1670] = {.count = 1, .reusable = true}, SHIFT(153), - [1672] = {.count = 1, .reusable = true}, SHIFT(575), - [1674] = {.count = 1, .reusable = false}, SHIFT(575), - [1676] = {.count = 1, .reusable = true}, SHIFT(260), - [1678] = {.count = 1, .reusable = true}, SHIFT(587), - [1680] = {.count = 1, .reusable = false}, SHIFT(587), - [1682] = {.count = 1, .reusable = true}, SHIFT(93), - [1684] = {.count = 1, .reusable = true}, SHIFT(597), - [1686] = {.count = 1, .reusable = false}, SHIFT(597), - [1688] = {.count = 1, .reusable = true}, SHIFT(98), - [1690] = {.count = 1, .reusable = true}, SHIFT(580), - [1692] = {.count = 1, .reusable = false}, SHIFT(580), - [1694] = {.count = 1, .reusable = true}, SHIFT(107), - [1696] = {.count = 1, .reusable = true}, SHIFT(600), - [1698] = {.count = 1, .reusable = false}, SHIFT(600), - [1700] = {.count = 1, .reusable = true}, SHIFT(134), - [1702] = {.count = 1, .reusable = true}, SHIFT(613), - [1704] = {.count = 1, .reusable = false}, SHIFT(613), - [1706] = {.count = 1, .reusable = true}, SHIFT(238), - [1708] = {.count = 1, .reusable = true}, SHIFT(576), - [1710] = {.count = 1, .reusable = false}, SHIFT(576), - [1712] = {.count = 1, .reusable = true}, SHIFT(116), - [1714] = {.count = 1, .reusable = true}, SHIFT(585), - [1716] = {.count = 1, .reusable = false}, SHIFT(585), - [1718] = {.count = 1, .reusable = true}, SHIFT(114), - [1720] = {.count = 1, .reusable = true}, SHIFT(572), - [1722] = {.count = 1, .reusable = false}, SHIFT(572), - [1724] = {.count = 1, .reusable = true}, SHIFT(132), - [1726] = {.count = 1, .reusable = true}, SHIFT(596), - [1728] = {.count = 1, .reusable = false}, SHIFT(596), - [1730] = {.count = 1, .reusable = true}, SHIFT(118), - [1732] = {.count = 1, .reusable = true}, SHIFT(594), - [1734] = {.count = 1, .reusable = false}, SHIFT(594), - [1736] = {.count = 1, .reusable = true}, SHIFT(110), - [1738] = {.count = 1, .reusable = true}, SHIFT(591), - [1740] = {.count = 1, .reusable = false}, SHIFT(591), - [1742] = {.count = 1, .reusable = true}, SHIFT(124), - [1744] = {.count = 1, .reusable = true}, SHIFT(588), - [1746] = {.count = 1, .reusable = false}, SHIFT(588), - [1748] = {.count = 1, .reusable = true}, SHIFT(101), - [1750] = {.count = 1, .reusable = true}, SHIFT(586), - [1752] = {.count = 1, .reusable = false}, SHIFT(586), - [1754] = {.count = 1, .reusable = true}, SHIFT(99), - [1756] = {.count = 1, .reusable = true}, SHIFT(583), - [1758] = {.count = 1, .reusable = false}, SHIFT(583), - [1760] = {.count = 1, .reusable = true}, SHIFT(584), - [1762] = {.count = 1, .reusable = false}, SHIFT(584), - [1764] = {.count = 1, .reusable = true}, SHIFT(608), - [1766] = {.count = 1, .reusable = false}, SHIFT(608), - [1768] = {.count = 1, .reusable = true}, SHIFT(72), - [1770] = {.count = 1, .reusable = true}, SHIFT(606), - [1772] = {.count = 1, .reusable = false}, SHIFT(606), - [1774] = {.count = 1, .reusable = true}, SHIFT(75), - [1776] = {.count = 1, .reusable = true}, SHIFT(574), - [1778] = {.count = 1, .reusable = false}, SHIFT(574), - [1780] = {.count = 1, .reusable = true}, SHIFT(73), - [1782] = {.count = 1, .reusable = true}, SHIFT(589), - [1784] = {.count = 1, .reusable = false}, SHIFT(589), - [1786] = {.count = 1, .reusable = false}, SHIFT(428), - [1788] = {.count = 1, .reusable = true}, SHIFT(851), - [1790] = {.count = 1, .reusable = true}, SHIFT(428), - [1792] = {.count = 1, .reusable = true}, SHIFT(449), - [1794] = {.count = 1, .reusable = true}, SHIFT(659), - [1796] = {.count = 1, .reusable = false}, SHIFT(659), - [1798] = {.count = 1, .reusable = true}, SHIFT(818), - [1800] = {.count = 1, .reusable = true}, SHIFT(472), - [1802] = {.count = 1, .reusable = true}, SHIFT(646), - [1804] = {.count = 1, .reusable = false}, SHIFT(646), - [1806] = {.count = 1, .reusable = true}, SHIFT(838), - [1808] = {.count = 1, .reusable = true}, SHIFT(856), - [1810] = {.count = 1, .reusable = true}, SHIFT(862), - [1812] = {.count = 1, .reusable = true}, SHIFT(841), - [1814] = {.count = 1, .reusable = true}, SHIFT(570), - [1816] = {.count = 1, .reusable = false}, SHIFT(570), - [1818] = {.count = 1, .reusable = true}, SHIFT(438), - [1820] = {.count = 1, .reusable = true}, SHIFT(569), - [1822] = {.count = 1, .reusable = false}, SHIFT(569), - [1824] = {.count = 1, .reusable = true}, SHIFT(459), - [1826] = {.count = 1, .reusable = true}, SHIFT(636), - [1828] = {.count = 1, .reusable = false}, SHIFT(636), - [1830] = {.count = 1, .reusable = true}, SHIFT(820), - [1832] = {.count = 1, .reusable = true}, SHIFT(466), - [1834] = {.count = 1, .reusable = true}, SHIFT(644), - [1836] = {.count = 1, .reusable = false}, SHIFT(644), - [1838] = {.count = 1, .reusable = true}, SHIFT(582), - [1840] = {.count = 1, .reusable = false}, SHIFT(582), - [1842] = {.count = 1, .reusable = true}, SHIFT(458), - [1844] = {.count = 1, .reusable = true}, SHIFT(658), - [1846] = {.count = 1, .reusable = false}, SHIFT(658), - [1848] = {.count = 1, .reusable = true}, SHIFT(475), - [1850] = {.count = 1, .reusable = true}, SHIFT(647), - [1852] = {.count = 1, .reusable = false}, SHIFT(647), - [1854] = {.count = 1, .reusable = true}, SHIFT(464), - [1856] = {.count = 1, .reusable = true}, SHIFT(648), - [1858] = {.count = 1, .reusable = false}, SHIFT(648), - [1860] = {.count = 1, .reusable = true}, SHIFT(479), - [1862] = {.count = 1, .reusable = true}, SHIFT(654), - [1864] = {.count = 1, .reusable = false}, SHIFT(654), - [1866] = {.count = 1, .reusable = true}, SHIFT(452), - [1868] = {.count = 1, .reusable = true}, SHIFT(655), - [1870] = {.count = 1, .reusable = false}, SHIFT(655), - [1872] = {.count = 1, .reusable = true}, SHIFT(465), - [1874] = {.count = 1, .reusable = true}, SHIFT(616), - [1876] = {.count = 1, .reusable = false}, SHIFT(616), - [1878] = {.count = 1, .reusable = true}, SHIFT(480), - [1880] = {.count = 1, .reusable = true}, SHIFT(656), - [1882] = {.count = 1, .reusable = false}, SHIFT(656), - [1884] = {.count = 1, .reusable = true}, SHIFT(898), - [1886] = {.count = 1, .reusable = true}, SHIFT(894), - [1888] = {.count = 1, .reusable = true}, SHIFT(470), - [1890] = {.count = 1, .reusable = true}, SHIFT(663), - [1892] = {.count = 1, .reusable = false}, SHIFT(663), - [1894] = {.count = 1, .reusable = true}, SHIFT(881), - [1896] = {.count = 1, .reusable = false}, SHIFT(425), - [1898] = {.count = 1, .reusable = true}, SHIFT(425), - [1900] = {.count = 1, .reusable = false}, SHIFT(423), - [1902] = {.count = 1, .reusable = true}, SHIFT(423), - [1904] = {.count = 1, .reusable = true}, SHIFT(560), - [1906] = {.count = 1, .reusable = false}, SHIFT(560), - [1908] = {.count = 1, .reusable = true}, SHIFT(611), - [1910] = {.count = 1, .reusable = false}, SHIFT(611), - [1912] = {.count = 1, .reusable = true}, SHIFT(651), - [1914] = {.count = 1, .reusable = false}, SHIFT(651), - [1916] = {.count = 1, .reusable = true}, SHIFT(632), - [1918] = {.count = 1, .reusable = false}, SHIFT(632), - [1920] = {.count = 1, .reusable = true}, SHIFT(640), - [1922] = {.count = 1, .reusable = false}, SHIFT(640), - [1924] = {.count = 1, .reusable = false}, SHIFT(427), - [1926] = {.count = 1, .reusable = true}, SHIFT(215), - [1928] = {.count = 1, .reusable = true}, SHIFT(427), - [1930] = {.count = 1, .reusable = true}, SHIFT(554), - [1932] = {.count = 1, .reusable = false}, SHIFT(554), - [1934] = {.count = 1, .reusable = true}, SHIFT(555), - [1936] = {.count = 1, .reusable = false}, SHIFT(555), - [1938] = {.count = 1, .reusable = true}, SHIFT(557), - [1940] = {.count = 1, .reusable = false}, SHIFT(557), - [1942] = {.count = 1, .reusable = true}, SHIFT(558), - [1944] = {.count = 1, .reusable = false}, SHIFT(558), - [1946] = {.count = 1, .reusable = false}, SHIFT(417), - [1948] = {.count = 1, .reusable = true}, SHIFT(417), - [1950] = {.count = 1, .reusable = false}, SHIFT(405), - [1952] = {.count = 1, .reusable = true}, SHIFT(405), - [1954] = {.count = 1, .reusable = false}, SHIFT(404), - [1956] = {.count = 1, .reusable = true}, SHIFT(404), - [1958] = {.count = 1, .reusable = false}, SHIFT(403), - [1960] = {.count = 1, .reusable = true}, SHIFT(403), - [1962] = {.count = 1, .reusable = false}, SHIFT(410), - [1964] = {.count = 1, .reusable = true}, SHIFT(410), - [1966] = {.count = 1, .reusable = false}, SHIFT(414), - [1968] = {.count = 1, .reusable = true}, SHIFT(414), - [1970] = {.count = 1, .reusable = false}, SHIFT(415), - [1972] = {.count = 1, .reusable = true}, SHIFT(415), - [1974] = {.count = 1, .reusable = false}, SHIFT(419), - [1976] = {.count = 1, .reusable = true}, SHIFT(419), - [1978] = {.count = 1, .reusable = false}, SHIFT(421), - [1980] = {.count = 1, .reusable = true}, SHIFT(421), - [1982] = {.count = 1, .reusable = true}, SHIFT(612), - [1984] = {.count = 1, .reusable = false}, SHIFT(612), - [1986] = {.count = 1, .reusable = true}, SHIFT(559), - [1988] = {.count = 1, .reusable = false}, SHIFT(559), - [1990] = {.count = 1, .reusable = true}, SHIFT(561), - [1992] = {.count = 1, .reusable = false}, SHIFT(561), - [1994] = {.count = 1, .reusable = true}, SHIFT(562), - [1996] = {.count = 1, .reusable = false}, SHIFT(562), - [1998] = {.count = 1, .reusable = true}, SHIFT(563), - [2000] = {.count = 1, .reusable = false}, SHIFT(563), - [2002] = {.count = 1, .reusable = true}, SHIFT(564), - [2004] = {.count = 1, .reusable = false}, SHIFT(564), - [2006] = {.count = 1, .reusable = true}, SHIFT(645), - [2008] = {.count = 1, .reusable = false}, SHIFT(645), - [2010] = {.count = 1, .reusable = false}, SHIFT(426), - [2012] = {.count = 1, .reusable = true}, SHIFT(426), - [2014] = {.count = 1, .reusable = true}, SHIFT(649), - [2016] = {.count = 1, .reusable = false}, SHIFT(649), - [2018] = {.count = 1, .reusable = true}, SHIFT(664), - [2020] = {.count = 1, .reusable = false}, SHIFT(664), - [2022] = {.count = 1, .reusable = true}, SHIFT(633), - [2024] = {.count = 1, .reusable = false}, SHIFT(633), - [2026] = {.count = 1, .reusable = true}, SHIFT(618), - [2028] = {.count = 1, .reusable = false}, SHIFT(618), - [2030] = {.count = 1, .reusable = false}, SHIFT(424), - [2032] = {.count = 1, .reusable = true}, SHIFT(424), - [2034] = {.count = 1, .reusable = true}, SHIFT(665), - [2036] = {.count = 1, .reusable = false}, SHIFT(665), - [2038] = {.count = 1, .reusable = true}, SHIFT(556), - [2040] = {.count = 1, .reusable = false}, SHIFT(556), - [2042] = {.count = 1, .reusable = true}, SHIFT(277), - [2044] = {.count = 1, .reusable = true}, SHIFT(565), - [2046] = {.count = 1, .reusable = false}, SHIFT(565), - [2048] = {.count = 1, .reusable = true}, SHIFT(38), - [2050] = {.count = 1, .reusable = true}, SHIFT(24), - [2052] = {.count = 1, .reusable = true}, SHIFT(28), - [2054] = {.count = 1, .reusable = true}, SHIFT(33), - [2056] = {.count = 1, .reusable = true}, SHIFT(986), - [2058] = {.count = 1, .reusable = true}, SHIFT(537), - [2060] = {.count = 1, .reusable = false}, SHIFT(532), - [2062] = {.count = 1, .reusable = false}, SHIFT(537), - [2064] = {.count = 1, .reusable = true}, SHIFT(515), - [2066] = {.count = 1, .reusable = false}, SHIFT(533), - [2068] = {.count = 1, .reusable = true}, SHIFT(531), - [2070] = {.count = 1, .reusable = true}, SHIFT(530), - [2072] = {.count = 1, .reusable = false}, SHIFT(529), - [2074] = {.count = 1, .reusable = true}, SHIFT(518), - [2076] = {.count = 1, .reusable = true}, SHIFT(517), - [2078] = {.count = 1, .reusable = false}, SHIFT(516), - [2080] = {.count = 1, .reusable = true}, SHIFT(516), - [2082] = {.count = 1, .reusable = true}, SHIFT(534), - [2084] = {.count = 1, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [2086] = {.count = 1, .reusable = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [2088] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(667), - [2091] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1146), - [2094] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(668), - [2097] = {.count = 1, .reusable = false}, SHIFT(728), - [2099] = {.count = 1, .reusable = true}, SHIFT(528), - [2101] = {.count = 1, .reusable = true}, SHIFT(430), - [2103] = {.count = 1, .reusable = true}, SHIFT(490), - [2105] = {.count = 1, .reusable = true}, REDUCE(sym_comma_expression, 3, .production_id = 24), - [2107] = {.count = 1, .reusable = true}, SHIFT(394), - [2109] = {.count = 1, .reusable = true}, SHIFT(434), - [2111] = {.count = 1, .reusable = true}, SHIFT(129), - [2113] = {.count = 1, .reusable = true}, SHIFT(120), - [2115] = {.count = 1, .reusable = true}, SHIFT(97), - [2117] = {.count = 1, .reusable = true}, SHIFT(150), - [2119] = {.count = 1, .reusable = true}, SHIFT(252), - [2121] = {.count = 1, .reusable = true}, SHIFT(492), - [2123] = {.count = 1, .reusable = true}, SHIFT(192), - [2125] = {.count = 1, .reusable = true}, SHIFT(420), - [2127] = {.count = 1, .reusable = true}, SHIFT(100), - [2129] = {.count = 1, .reusable = true}, SHIFT(104), - [2131] = {.count = 1, .reusable = true}, SHIFT(566), - [2133] = {.count = 1, .reusable = true}, SHIFT(87), - [2135] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_pair, 3, .production_id = 66), - [2137] = {.count = 1, .reusable = true}, SHIFT(119), - [2139] = {.count = 1, .reusable = true}, SHIFT(111), - [2141] = {.count = 1, .reusable = true}, SHIFT(220), - [2143] = {.count = 1, .reusable = true}, SHIFT(113), - [2145] = {.count = 1, .reusable = true}, SHIFT(125), - [2147] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), - [2149] = {.count = 1, .reusable = true}, SHIFT(115), - [2151] = {.count = 1, .reusable = true}, SHIFT(287), - [2153] = {.count = 1, .reusable = true}, SHIFT(244), - [2155] = {.count = 1, .reusable = true}, SHIFT(127), - [2157] = {.count = 1, .reusable = true}, SHIFT(74), - [2159] = {.count = 1, .reusable = true}, SHIFT(95), - [2161] = {.count = 1, .reusable = true}, SHIFT(70), - [2163] = {.count = 1, .reusable = true}, SHIFT(168), - [2165] = {.count = 1, .reusable = true}, SHIFT(112), - [2167] = {.count = 1, .reusable = true}, SHIFT(71), - [2169] = {.count = 1, .reusable = true}, SHIFT(128), - [2171] = {.count = 1, .reusable = true}, SHIFT(102), - [2173] = {.count = 1, .reusable = true}, SHIFT(91), - [2175] = {.count = 1, .reusable = true}, SHIFT(484), - [2177] = {.count = 1, .reusable = true}, SHIFT(239), - [2179] = {.count = 1, .reusable = true}, SHIFT(96), - [2181] = {.count = 1, .reusable = false}, REDUCE(sym_attribute_specifier, 4), - [2183] = {.count = 1, .reusable = true}, REDUCE(sym_attribute_specifier, 4), - [2185] = {.count = 1, .reusable = true}, REDUCE(sym_init_declarator, 3, .production_id = 45), - [2187] = {.count = 1, .reusable = true}, SHIFT(130), - [2189] = {.count = 1, .reusable = true}, SHIFT(131), - [2191] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 3, .production_id = 56), - [2193] = {.count = 1, .reusable = true}, REDUCE(aux_sym_argument_list_repeat1, 2), - [2195] = {.count = 1, .reusable = true}, SHIFT(80), - [2197] = {.count = 1, .reusable = true}, SHIFT(505), - [2199] = {.count = 1, .reusable = true}, SHIFT(500), - [2201] = {.count = 1, .reusable = true}, SHIFT(478), - [2203] = {.count = 1, .reusable = true}, SHIFT(55), - [2205] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 2, .production_id = 37), - [2207] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 3, .production_id = 14), - [2209] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 13), - [2211] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 3, .production_id = 27), - [2213] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 50), - [2215] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 51), - [2217] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 5, .production_id = 46), - [2219] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 34), - [2221] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 14), - [2223] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 35), - [2225] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 13), - [2227] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 4, .production_id = 27), - [2229] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 3, .production_id = 37), - [2231] = {.count = 1, .reusable = true}, SHIFT(53), - [2233] = {.count = 1, .reusable = true}, REDUCE(sym_bitfield_clause, 2), - [2235] = {.count = 1, .reusable = true}, SHIFT(468), - [2237] = {.count = 1, .reusable = true}, SHIFT(45), - [2239] = {.count = 1, .reusable = true}, SHIFT(456), - [2241] = {.count = 1, .reusable = true}, SHIFT(509), - [2243] = {.count = 1, .reusable = true}, SHIFT(471), - [2245] = {.count = 1, .reusable = true}, SHIFT(473), - [2247] = {.count = 1, .reusable = true}, SHIFT(474), - [2249] = {.count = 1, .reusable = true}, SHIFT(432), - [2251] = {.count = 1, .reusable = true}, SHIFT(917), - [2253] = {.count = 1, .reusable = true}, SHIFT(469), - [2255] = {.count = 1, .reusable = true}, SHIFT(451), - [2257] = {.count = 1, .reusable = true}, SHIFT(450), - [2259] = {.count = 1, .reusable = true}, SHIFT(453), - [2261] = {.count = 1, .reusable = true}, SHIFT(457), - [2263] = {.count = 1, .reusable = true}, SHIFT(463), - [2265] = {.count = 1, .reusable = true}, SHIFT(541), - [2267] = {.count = 1, .reusable = true}, SHIFT(61), - [2269] = {.count = 1, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), - [2271] = {.count = 1, .reusable = true}, REDUCE(aux_sym_type_definition_repeat1, 2), - [2273] = {.count = 2, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(708), - [2276] = {.count = 1, .reusable = false}, REDUCE(sym_storage_class_specifier, 1), - [2278] = {.count = 1, .reusable = true}, REDUCE(sym_storage_class_specifier, 1), - [2280] = {.count = 1, .reusable = false}, REDUCE(sym_type_qualifier, 1), - [2282] = {.count = 1, .reusable = true}, REDUCE(sym_type_qualifier, 1), - [2284] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 34), + [1192] = {.count = 1, .reusable = false}, SHIFT(120), + [1194] = {.count = 1, .reusable = false}, SHIFT(89), + [1196] = {.count = 1, .reusable = false}, SHIFT(79), + [1198] = {.count = 1, .reusable = true}, SHIFT(997), + [1200] = {.count = 1, .reusable = true}, SHIFT(492), + [1202] = {.count = 1, .reusable = true}, SHIFT(491), + [1204] = {.count = 1, .reusable = false}, SHIFT(999), + [1206] = {.count = 1, .reusable = true}, SHIFT(573), + [1208] = {.count = 1, .reusable = false}, SHIFT(573), + [1210] = {.count = 1, .reusable = true}, SHIFT(490), + [1212] = {.count = 1, .reusable = true}, SHIFT(592), + [1214] = {.count = 1, .reusable = false}, SHIFT(592), + [1216] = {.count = 1, .reusable = true}, SHIFT(496), + [1218] = {.count = 1, .reusable = false}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [1220] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1), + [1222] = {.count = 2, .reusable = true}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), + [1225] = {.count = 3, .reusable = true}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), SHIFT(716), + [1229] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), + [1232] = {.count = 1, .reusable = false}, SHIFT(542), + [1234] = {.count = 1, .reusable = true}, SHIFT(100), + [1236] = {.count = 1, .reusable = true}, SHIFT(542), + [1238] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1), + [1240] = {.count = 1, .reusable = true}, SHIFT(114), + [1242] = {.count = 1, .reusable = true}, SHIFT(99), + [1244] = {.count = 1, .reusable = true}, SHIFT(110), + [1246] = {.count = 1, .reusable = true}, SHIFT(445), + [1248] = {.count = 1, .reusable = true}, SHIFT(876), + [1250] = {.count = 1, .reusable = false}, SHIFT(569), + [1252] = {.count = 1, .reusable = true}, SHIFT(642), + [1254] = {.count = 1, .reusable = false}, SHIFT(642), + [1256] = {.count = 1, .reusable = false}, SHIFT(747), + [1258] = {.count = 1, .reusable = false}, SHIFT(1135), + [1260] = {.count = 1, .reusable = false}, SHIFT(1089), + [1262] = {.count = 1, .reusable = false}, SHIFT(631), + [1264] = {.count = 1, .reusable = false}, SHIFT(1090), + [1266] = {.count = 1, .reusable = false}, SHIFT(405), + [1268] = {.count = 1, .reusable = false}, SHIFT(1016), + [1270] = {.count = 1, .reusable = false}, SHIFT(974), + [1272] = {.count = 1, .reusable = false}, SHIFT(671), + [1274] = {.count = 1, .reusable = false}, SHIFT(708), + [1276] = {.count = 1, .reusable = true}, SHIFT(460), + [1278] = {.count = 1, .reusable = true}, SHIFT(835), + [1280] = {.count = 1, .reusable = true}, SHIFT(660), + [1282] = {.count = 1, .reusable = false}, SHIFT(660), + [1284] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 14), + [1286] = {.count = 1, .reusable = false}, SHIFT(632), + [1288] = {.count = 1, .reusable = true}, SHIFT(471), + [1290] = {.count = 1, .reusable = true}, SHIFT(812), + [1292] = {.count = 1, .reusable = true}, SHIFT(633), + [1294] = {.count = 1, .reusable = false}, SHIFT(633), + [1296] = {.count = 1, .reusable = false}, SHIFT(698), + [1298] = {.count = 1, .reusable = true}, SHIFT(487), + [1300] = {.count = 1, .reusable = true}, SHIFT(867), + [1302] = {.count = 1, .reusable = true}, SHIFT(656), + [1304] = {.count = 1, .reusable = false}, SHIFT(656), + [1306] = {.count = 1, .reusable = false}, SHIFT(680), + [1308] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_field_declaration_list, 2, .production_id = 14), + [1310] = {.count = 1, .reusable = false}, SHIFT(681), + [1312] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1314] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1316] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(871), + [1319] = {.count = 1, .reusable = true}, SHIFT(486), + [1321] = {.count = 1, .reusable = true}, SHIFT(893), + [1323] = {.count = 1, .reusable = true}, SHIFT(638), + [1325] = {.count = 1, .reusable = false}, SHIFT(638), + [1327] = {.count = 1, .reusable = false}, SHIFT(690), + [1329] = {.count = 1, .reusable = false}, SHIFT(692), + [1331] = {.count = 1, .reusable = false}, SHIFT(627), + [1333] = {.count = 1, .reusable = false}, SHIFT(699), + [1335] = {.count = 1, .reusable = true}, SHIFT(474), + [1337] = {.count = 1, .reusable = true}, SHIFT(860), + [1339] = {.count = 1, .reusable = true}, SHIFT(648), + [1341] = {.count = 1, .reusable = false}, SHIFT(648), + [1343] = {.count = 1, .reusable = true}, SHIFT(472), + [1345] = {.count = 1, .reusable = true}, SHIFT(811), + [1347] = {.count = 1, .reusable = true}, SHIFT(646), + [1349] = {.count = 1, .reusable = false}, SHIFT(646), + [1351] = {.count = 1, .reusable = true}, REDUCE(sym_concatenated_string, 2), + [1353] = {.count = 1, .reusable = false}, REDUCE(sym_concatenated_string, 2), + [1355] = {.count = 1, .reusable = true}, SHIFT(477), + [1357] = {.count = 1, .reusable = true}, SHIFT(854), + [1359] = {.count = 1, .reusable = true}, SHIFT(636), + [1361] = {.count = 1, .reusable = false}, SHIFT(636), + [1363] = {.count = 1, .reusable = true}, SHIFT(478), + [1365] = {.count = 1, .reusable = true}, SHIFT(889), + [1367] = {.count = 1, .reusable = true}, SHIFT(637), + [1369] = {.count = 1, .reusable = false}, SHIFT(637), + [1371] = {.count = 1, .reusable = false}, SHIFT(625), + [1373] = {.count = 1, .reusable = true}, SHIFT(485), + [1375] = {.count = 1, .reusable = true}, SHIFT(841), + [1377] = {.count = 1, .reusable = true}, SHIFT(640), + [1379] = {.count = 1, .reusable = false}, SHIFT(640), + [1381] = {.count = 1, .reusable = false}, SHIFT(763), + [1383] = {.count = 1, .reusable = true}, SHIFT(931), + [1385] = {.count = 1, .reusable = true}, SHIFT(779), + [1387] = {.count = 1, .reusable = true}, SHIFT(401), + [1389] = {.count = 1, .reusable = true}, SHIFT(715), + [1391] = {.count = 1, .reusable = true}, SHIFT(373), + [1393] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(747), + [1396] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1135), + [1399] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1089), + [1402] = {.count = 1, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [1404] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1090), + [1407] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(974), + [1410] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(669), + [1413] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1146), + [1416] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(668), + [1419] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(712), + [1422] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(723), + [1425] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(909), + [1428] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(923), + [1431] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(911), + [1434] = {.count = 1, .reusable = false}, SHIFT(1136), + [1436] = {.count = 1, .reusable = false}, SHIFT(1108), + [1438] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), + [1440] = {.count = 1, .reusable = false}, SHIFT(1109), + [1442] = {.count = 1, .reusable = false}, SHIFT(971), + [1444] = {.count = 1, .reusable = false}, SHIFT(1117), + [1446] = {.count = 1, .reusable = false}, SHIFT(1029), + [1448] = {.count = 1, .reusable = false}, SHIFT(1030), + [1450] = {.count = 1, .reusable = false}, SHIFT(990), + [1452] = {.count = 1, .reusable = true}, SHIFT(745), + [1454] = {.count = 1, .reusable = true}, SHIFT(750), + [1456] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), + [1458] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1136), + [1461] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1108), + [1464] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1109), + [1467] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(971), + [1470] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1117), + [1473] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1029), + [1476] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1030), + [1479] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(990), + [1482] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [1484] = {.count = 1, .reusable = true}, SHIFT(80), + [1486] = {.count = 1, .reusable = true}, SHIFT(600), + [1488] = {.count = 1, .reusable = false}, SHIFT(600), + [1490] = {.count = 1, .reusable = true}, SHIFT(102), + [1492] = {.count = 1, .reusable = true}, SHIFT(606), + [1494] = {.count = 1, .reusable = false}, SHIFT(606), + [1496] = {.count = 1, .reusable = true}, SHIFT(287), + [1498] = {.count = 1, .reusable = true}, SHIFT(607), + [1500] = {.count = 1, .reusable = false}, SHIFT(607), + [1502] = {.count = 1, .reusable = true}, SHIFT(132), + [1504] = {.count = 1, .reusable = true}, SHIFT(584), + [1506] = {.count = 1, .reusable = false}, SHIFT(584), + [1508] = {.count = 1, .reusable = true}, SHIFT(143), + [1510] = {.count = 1, .reusable = true}, SHIFT(597), + [1512] = {.count = 1, .reusable = false}, SHIFT(597), + [1514] = {.count = 1, .reusable = true}, SHIFT(101), + [1516] = {.count = 1, .reusable = true}, SHIFT(590), + [1518] = {.count = 1, .reusable = false}, SHIFT(590), + [1520] = {.count = 1, .reusable = true}, SHIFT(133), + [1522] = {.count = 1, .reusable = true}, SHIFT(577), + [1524] = {.count = 1, .reusable = false}, SHIFT(577), + [1526] = {.count = 1, .reusable = true}, SHIFT(122), + [1528] = {.count = 1, .reusable = true}, SHIFT(578), + [1530] = {.count = 1, .reusable = false}, SHIFT(578), + [1532] = {.count = 1, .reusable = true}, SHIFT(93), + [1534] = {.count = 1, .reusable = true}, SHIFT(612), + [1536] = {.count = 1, .reusable = false}, SHIFT(612), + [1538] = {.count = 1, .reusable = true}, SHIFT(83), + [1540] = {.count = 1, .reusable = true}, SHIFT(610), + [1542] = {.count = 1, .reusable = false}, SHIFT(610), + [1544] = {.count = 1, .reusable = true}, SHIFT(82), + [1546] = {.count = 1, .reusable = true}, SHIFT(614), + [1548] = {.count = 1, .reusable = false}, SHIFT(614), + [1550] = {.count = 1, .reusable = true}, SHIFT(230), + [1552] = {.count = 1, .reusable = true}, SHIFT(599), + [1554] = {.count = 1, .reusable = false}, SHIFT(599), + [1556] = {.count = 1, .reusable = true}, SHIFT(135), + [1558] = {.count = 1, .reusable = true}, SHIFT(611), + [1560] = {.count = 1, .reusable = false}, SHIFT(611), + [1562] = {.count = 1, .reusable = true}, SHIFT(212), + [1564] = {.count = 1, .reusable = true}, SHIFT(595), + [1566] = {.count = 1, .reusable = false}, SHIFT(595), + [1568] = {.count = 1, .reusable = true}, SHIFT(588), + [1570] = {.count = 1, .reusable = false}, SHIFT(588), + [1572] = {.count = 1, .reusable = true}, SHIFT(134), + [1574] = {.count = 1, .reusable = true}, SHIFT(580), + [1576] = {.count = 1, .reusable = false}, SHIFT(580), + [1578] = {.count = 1, .reusable = true}, SHIFT(81), + [1580] = {.count = 1, .reusable = true}, SHIFT(598), + [1582] = {.count = 1, .reusable = false}, SHIFT(598), + [1584] = {.count = 1, .reusable = true}, SHIFT(111), + [1586] = {.count = 1, .reusable = true}, SHIFT(574), + [1588] = {.count = 1, .reusable = false}, SHIFT(574), + [1590] = {.count = 1, .reusable = true}, SHIFT(73), + [1592] = {.count = 1, .reusable = true}, SHIFT(601), + [1594] = {.count = 1, .reusable = false}, SHIFT(601), + [1596] = {.count = 1, .reusable = true}, SHIFT(74), + [1598] = {.count = 1, .reusable = true}, SHIFT(582), + [1600] = {.count = 1, .reusable = false}, SHIFT(582), + [1602] = {.count = 1, .reusable = true}, SHIFT(76), + [1604] = {.count = 1, .reusable = true}, SHIFT(585), + [1606] = {.count = 1, .reusable = false}, SHIFT(585), + [1608] = {.count = 1, .reusable = true}, SHIFT(117), + [1610] = {.count = 1, .reusable = true}, SHIFT(583), + [1612] = {.count = 1, .reusable = false}, SHIFT(583), + [1614] = {.count = 1, .reusable = true}, SHIFT(78), + [1616] = {.count = 1, .reusable = true}, SHIFT(587), + [1618] = {.count = 1, .reusable = false}, SHIFT(587), + [1620] = {.count = 1, .reusable = true}, SHIFT(608), + [1622] = {.count = 1, .reusable = false}, SHIFT(608), + [1624] = {.count = 1, .reusable = true}, SHIFT(88), + [1626] = {.count = 1, .reusable = true}, SHIFT(589), + [1628] = {.count = 1, .reusable = false}, SHIFT(589), + [1630] = {.count = 1, .reusable = true}, SHIFT(106), + [1632] = {.count = 1, .reusable = true}, SHIFT(576), + [1634] = {.count = 1, .reusable = false}, SHIFT(576), + [1636] = {.count = 1, .reusable = true}, SHIFT(107), + [1638] = {.count = 1, .reusable = true}, SHIFT(581), + [1640] = {.count = 1, .reusable = false}, SHIFT(581), + [1642] = {.count = 1, .reusable = true}, SHIFT(91), + [1644] = {.count = 1, .reusable = true}, SHIFT(593), + [1646] = {.count = 1, .reusable = false}, SHIFT(593), + [1648] = {.count = 1, .reusable = true}, SHIFT(109), + [1650] = {.count = 1, .reusable = true}, SHIFT(586), + [1652] = {.count = 1, .reusable = false}, SHIFT(586), + [1654] = {.count = 1, .reusable = true}, SHIFT(98), + [1656] = {.count = 1, .reusable = true}, SHIFT(596), + [1658] = {.count = 1, .reusable = false}, SHIFT(596), + [1660] = {.count = 1, .reusable = true}, REDUCE(sym_binary_expression, 3, .production_id = 30), + [1662] = {.count = 1, .reusable = true}, SHIFT(463), + [1664] = {.count = 1, .reusable = false}, SHIFT(522), + [1666] = {.count = 1, .reusable = true}, SHIFT(535), + [1668] = {.count = 1, .reusable = false}, REDUCE(sym_binary_expression, 3, .production_id = 30), + [1670] = {.count = 1, .reusable = false}, SHIFT(523), + [1672] = {.count = 1, .reusable = false}, SHIFT(524), + [1674] = {.count = 1, .reusable = false}, SHIFT(527), + [1676] = {.count = 1, .reusable = false}, SHIFT(528), + [1678] = {.count = 1, .reusable = true}, SHIFT(529), + [1680] = {.count = 1, .reusable = false}, SHIFT(530), + [1682] = {.count = 1, .reusable = true}, SHIFT(530), + [1684] = {.count = 1, .reusable = false}, SHIFT(531), + [1686] = {.count = 1, .reusable = true}, SHIFT(514), + [1688] = {.count = 1, .reusable = true}, SHIFT(1070), + [1690] = {.count = 1, .reusable = true}, SHIFT(444), + [1692] = {.count = 1, .reusable = true}, SHIFT(758), + [1694] = {.count = 1, .reusable = false}, SHIFT(484), + [1696] = {.count = 1, .reusable = true}, SHIFT(888), + [1698] = {.count = 1, .reusable = true}, SHIFT(484), + [1700] = {.count = 1, .reusable = true}, SHIFT(526), + [1702] = {.count = 1, .reusable = true}, SHIFT(440), + [1704] = {.count = 1, .reusable = true}, SHIFT(649), + [1706] = {.count = 1, .reusable = false}, SHIFT(649), + [1708] = {.count = 1, .reusable = true}, SHIFT(433), + [1710] = {.count = 1, .reusable = true}, SHIFT(650), + [1712] = {.count = 1, .reusable = false}, SHIFT(650), + [1714] = {.count = 1, .reusable = true}, SHIFT(432), + [1716] = {.count = 1, .reusable = true}, SHIFT(651), + [1718] = {.count = 1, .reusable = false}, SHIFT(651), + [1720] = {.count = 1, .reusable = true}, SHIFT(423), + [1722] = {.count = 1, .reusable = true}, SHIFT(658), + [1724] = {.count = 1, .reusable = false}, SHIFT(658), + [1726] = {.count = 1, .reusable = true}, SHIFT(417), + [1728] = {.count = 1, .reusable = true}, SHIFT(661), + [1730] = {.count = 1, .reusable = false}, SHIFT(661), + [1732] = {.count = 1, .reusable = true}, REDUCE(sym_assignment_expression, 3, .production_id = 24), + [1734] = {.count = 1, .reusable = false}, REDUCE(sym_assignment_expression, 3, .production_id = 24), + [1736] = {.count = 1, .reusable = true}, SHIFT(488), + [1738] = {.count = 1, .reusable = true}, SHIFT(412), + [1740] = {.count = 1, .reusable = true}, SHIFT(662), + [1742] = {.count = 1, .reusable = false}, SHIFT(662), + [1744] = {.count = 1, .reusable = true}, SHIFT(842), + [1746] = {.count = 1, .reusable = true}, SHIFT(572), + [1748] = {.count = 1, .reusable = false}, SHIFT(572), + [1750] = {.count = 1, .reusable = true}, SHIFT(428), + [1752] = {.count = 1, .reusable = true}, SHIFT(664), + [1754] = {.count = 1, .reusable = false}, SHIFT(664), + [1756] = {.count = 1, .reusable = true}, SHIFT(537), + [1758] = {.count = 1, .reusable = true}, SHIFT(571), + [1760] = {.count = 1, .reusable = false}, SHIFT(571), + [1762] = {.count = 1, .reusable = true}, SHIFT(430), + [1764] = {.count = 1, .reusable = true}, SHIFT(663), + [1766] = {.count = 1, .reusable = false}, SHIFT(663), + [1768] = {.count = 1, .reusable = true}, SHIFT(441), + [1770] = {.count = 1, .reusable = true}, SHIFT(659), + [1772] = {.count = 1, .reusable = false}, SHIFT(659), + [1774] = {.count = 1, .reusable = true}, REDUCE(sym_update_expression, 2, .production_id = 5), + [1776] = {.count = 1, .reusable = false}, REDUCE(sym_update_expression, 2, .production_id = 5), + [1778] = {.count = 1, .reusable = true}, REDUCE(sym_unary_expression, 2, .production_id = 5), + [1780] = {.count = 1, .reusable = false}, REDUCE(sym_unary_expression, 2, .production_id = 5), + [1782] = {.count = 1, .reusable = true}, SHIFT(820), + [1784] = {.count = 1, .reusable = true}, SHIFT(822), + [1786] = {.count = 1, .reusable = true}, SHIFT(429), + [1788] = {.count = 1, .reusable = true}, SHIFT(645), + [1790] = {.count = 1, .reusable = false}, SHIFT(645), + [1792] = {.count = 1, .reusable = true}, SHIFT(849), + [1794] = {.count = 1, .reusable = true}, SHIFT(603), + [1796] = {.count = 1, .reusable = false}, SHIFT(603), + [1798] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), + [1800] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), + [1802] = {.count = 1, .reusable = true}, SHIFT(852), + [1804] = {.count = 1, .reusable = true}, SHIFT(872), + [1806] = {.count = 1, .reusable = true}, REDUCE(sym_cast_expression, 4, .production_id = 39), + [1808] = {.count = 1, .reusable = false}, REDUCE(sym_cast_expression, 4, .production_id = 39), + [1810] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), + [1812] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), + [1814] = {.count = 1, .reusable = true}, REDUCE(sym_conditional_expression, 5, .production_id = 60), + [1816] = {.count = 1, .reusable = false}, REDUCE(sym_conditional_expression, 5, .production_id = 60), + [1818] = {.count = 1, .reusable = true}, SHIFT(525), + [1820] = {.count = 1, .reusable = true}, SHIFT(418), + [1822] = {.count = 1, .reusable = true}, SHIFT(643), + [1824] = {.count = 1, .reusable = false}, SHIFT(643), + [1826] = {.count = 1, .reusable = true}, SHIFT(414), + [1828] = {.count = 1, .reusable = true}, SHIFT(618), + [1830] = {.count = 1, .reusable = false}, SHIFT(618), + [1832] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_expression, 2, .production_id = 5), + [1834] = {.count = 1, .reusable = false}, REDUCE(sym_pointer_expression, 2, .production_id = 5), + [1836] = {.count = 1, .reusable = true}, SHIFT(840), + [1838] = {.count = 1, .reusable = true}, SHIFT(870), + [1840] = {.count = 1, .reusable = true}, SHIFT(885), + [1842] = {.count = 1, .reusable = false}, SHIFT(450), + [1844] = {.count = 1, .reusable = true}, SHIFT(450), + [1846] = {.count = 1, .reusable = true}, SHIFT(564), + [1848] = {.count = 1, .reusable = false}, SHIFT(564), + [1850] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 4), + [1852] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 4), + [1854] = {.count = 1, .reusable = true}, SHIFT(657), + [1856] = {.count = 1, .reusable = false}, SHIFT(657), + [1858] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 2), + [1860] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 2), + [1862] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 3), + [1864] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 3), + [1866] = {.count = 1, .reusable = true}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [1868] = {.count = 1, .reusable = false}, SHIFT(481), + [1870] = {.count = 1, .reusable = true}, SHIFT(481), + [1872] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 5), + [1874] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 5), + [1876] = {.count = 1, .reusable = false}, SHIFT(469), + [1878] = {.count = 1, .reusable = true}, SHIFT(469), + [1880] = {.count = 1, .reusable = false}, SHIFT(468), + [1882] = {.count = 1, .reusable = true}, SHIFT(468), + [1884] = {.count = 1, .reusable = false}, SHIFT(476), + [1886] = {.count = 1, .reusable = true}, SHIFT(247), + [1888] = {.count = 1, .reusable = true}, SHIFT(476), + [1890] = {.count = 1, .reusable = true}, SHIFT(557), + [1892] = {.count = 1, .reusable = false}, SHIFT(557), + [1894] = {.count = 1, .reusable = true}, REDUCE(sym_compound_literal_expression, 4, .production_id = 39), + [1896] = {.count = 1, .reusable = false}, REDUCE(sym_compound_literal_expression, 4, .production_id = 39), + [1898] = {.count = 1, .reusable = true}, SHIFT(604), + [1900] = {.count = 1, .reusable = false}, SHIFT(604), + [1902] = {.count = 1, .reusable = true}, SHIFT(619), + [1904] = {.count = 1, .reusable = false}, SHIFT(619), + [1906] = {.count = 1, .reusable = true}, SHIFT(647), + [1908] = {.count = 1, .reusable = false}, SHIFT(647), + [1910] = {.count = 1, .reusable = true}, SHIFT(278), + [1912] = {.count = 1, .reusable = true}, SHIFT(556), + [1914] = {.count = 1, .reusable = false}, SHIFT(556), + [1916] = {.count = 1, .reusable = true}, REDUCE(sym_field_expression, 3, .production_id = 31), + [1918] = {.count = 1, .reusable = false}, REDUCE(sym_field_expression, 3, .production_id = 31), + [1920] = {.count = 1, .reusable = true}, SHIFT(641), + [1922] = {.count = 1, .reusable = false}, SHIFT(641), + [1924] = {.count = 1, .reusable = true}, SHIFT(639), + [1926] = {.count = 1, .reusable = false}, SHIFT(639), + [1928] = {.count = 1, .reusable = true}, REDUCE(sym_call_expression, 2, .production_id = 10), + [1930] = {.count = 1, .reusable = false}, REDUCE(sym_call_expression, 2, .production_id = 10), + [1932] = {.count = 1, .reusable = true}, REDUCE(sym_update_expression, 2, .production_id = 9), + [1934] = {.count = 1, .reusable = false}, REDUCE(sym_update_expression, 2, .production_id = 9), + [1936] = {.count = 1, .reusable = true}, SHIFT(558), + [1938] = {.count = 1, .reusable = false}, SHIFT(558), + [1940] = {.count = 1, .reusable = true}, SHIFT(559), + [1942] = {.count = 1, .reusable = false}, SHIFT(559), + [1944] = {.count = 1, .reusable = true}, SHIFT(560), + [1946] = {.count = 1, .reusable = false}, SHIFT(560), + [1948] = {.count = 1, .reusable = true}, SHIFT(561), + [1950] = {.count = 1, .reusable = false}, SHIFT(561), + [1952] = {.count = 1, .reusable = true}, SHIFT(562), + [1954] = {.count = 1, .reusable = false}, SHIFT(562), + [1956] = {.count = 1, .reusable = true}, SHIFT(563), + [1958] = {.count = 1, .reusable = false}, SHIFT(563), + [1960] = {.count = 1, .reusable = true}, REDUCE(sym_char_literal, 3), + [1962] = {.count = 1, .reusable = false}, REDUCE(sym_char_literal, 3), + [1964] = {.count = 1, .reusable = false}, SHIFT(464), + [1966] = {.count = 1, .reusable = true}, SHIFT(464), + [1968] = {.count = 1, .reusable = false}, SHIFT(455), + [1970] = {.count = 1, .reusable = true}, SHIFT(455), + [1972] = {.count = 1, .reusable = false}, SHIFT(452), + [1974] = {.count = 1, .reusable = true}, SHIFT(452), + [1976] = {.count = 1, .reusable = true}, SHIFT(652), + [1978] = {.count = 1, .reusable = false}, SHIFT(652), + [1980] = {.count = 1, .reusable = false}, SHIFT(443), + [1982] = {.count = 1, .reusable = true}, SHIFT(443), + [1984] = {.count = 1, .reusable = false}, SHIFT(449), + [1986] = {.count = 1, .reusable = true}, SHIFT(449), + [1988] = {.count = 1, .reusable = false}, SHIFT(448), + [1990] = {.count = 1, .reusable = true}, SHIFT(448), + [1992] = {.count = 1, .reusable = false}, SHIFT(447), + [1994] = {.count = 1, .reusable = true}, SHIFT(447), + [1996] = {.count = 1, .reusable = false}, SHIFT(446), + [1998] = {.count = 1, .reusable = true}, SHIFT(446), + [2000] = {.count = 1, .reusable = false}, SHIFT(466), + [2002] = {.count = 1, .reusable = true}, SHIFT(466), + [2004] = {.count = 1, .reusable = true}, SHIFT(565), + [2006] = {.count = 1, .reusable = false}, SHIFT(565), + [2008] = {.count = 1, .reusable = true}, SHIFT(566), + [2010] = {.count = 1, .reusable = false}, SHIFT(566), + [2012] = {.count = 1, .reusable = true}, SHIFT(630), + [2014] = {.count = 1, .reusable = false}, SHIFT(630), + [2016] = {.count = 1, .reusable = true}, SHIFT(634), + [2018] = {.count = 1, .reusable = false}, SHIFT(634), + [2020] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 2), + [2022] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 2), + [2024] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_expression, 4, .production_id = 48), + [2026] = {.count = 1, .reusable = false}, REDUCE(sym_subscript_expression, 4, .production_id = 48), + [2028] = {.count = 1, .reusable = true}, SHIFT(613), + [2030] = {.count = 1, .reusable = false}, SHIFT(613), + [2032] = {.count = 1, .reusable = true}, SHIFT(635), + [2034] = {.count = 1, .reusable = false}, SHIFT(635), + [2036] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 4), + [2038] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 4), + [2040] = {.count = 1, .reusable = true}, SHIFT(567), + [2042] = {.count = 1, .reusable = false}, SHIFT(567), + [2044] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 3), + [2046] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 3), + [2048] = {.count = 1, .reusable = true}, SHIFT(24), + [2050] = {.count = 1, .reusable = true}, SHIFT(25), + [2052] = {.count = 1, .reusable = true}, SHIFT(40), + [2054] = {.count = 1, .reusable = true}, SHIFT(21), + [2056] = {.count = 1, .reusable = true}, SHIFT(969), + [2058] = {.count = 1, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), + [2060] = {.count = 1, .reusable = true}, REDUCE(aux_sym_type_definition_repeat1, 2), + [2062] = {.count = 2, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(569), + [2065] = {.count = 1, .reusable = true}, SHIFT(536), + [2067] = {.count = 1, .reusable = false}, SHIFT(532), + [2069] = {.count = 1, .reusable = false}, SHIFT(536), + [2071] = {.count = 1, .reusable = true}, SHIFT(515), + [2073] = {.count = 1, .reusable = true}, SHIFT(534), + [2075] = {.count = 1, .reusable = false}, SHIFT(533), + [2077] = {.count = 1, .reusable = true}, SHIFT(489), + [2079] = {.count = 1, .reusable = true}, SHIFT(520), + [2081] = {.count = 1, .reusable = false}, SHIFT(519), + [2083] = {.count = 1, .reusable = true}, SHIFT(518), + [2085] = {.count = 1, .reusable = true}, SHIFT(517), + [2087] = {.count = 1, .reusable = false}, SHIFT(516), + [2089] = {.count = 1, .reusable = true}, SHIFT(516), + [2091] = {.count = 1, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [2093] = {.count = 1, .reusable = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [2095] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(669), + [2098] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1146), + [2101] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(668), + [2104] = {.count = 1, .reusable = false}, REDUCE(sym_type_qualifier, 1), + [2106] = {.count = 1, .reusable = true}, REDUCE(sym_type_qualifier, 1), + [2108] = {.count = 1, .reusable = false}, SHIFT(725), + [2110] = {.count = 1, .reusable = true}, SHIFT(539), + [2112] = {.count = 1, .reusable = true}, SHIFT(543), + [2114] = {.count = 1, .reusable = true}, SHIFT(461), + [2116] = {.count = 1, .reusable = true}, REDUCE(sym_comma_expression, 3, .production_id = 24), + [2118] = {.count = 1, .reusable = true}, SHIFT(362), + [2120] = {.count = 1, .reusable = true}, SHIFT(493), + [2122] = {.count = 1, .reusable = true}, SHIFT(124), + [2124] = {.count = 1, .reusable = true}, SHIFT(157), + [2126] = {.count = 1, .reusable = true}, SHIFT(103), + [2128] = {.count = 1, .reusable = true}, SHIFT(75), + [2130] = {.count = 1, .reusable = true}, SHIFT(131), + [2132] = {.count = 1, .reusable = true}, SHIFT(480), + [2134] = {.count = 1, .reusable = true}, SHIFT(123), + [2136] = {.count = 1, .reusable = true}, SHIFT(127), + [2138] = {.count = 1, .reusable = true}, SHIFT(77), + [2140] = {.count = 1, .reusable = true}, SHIFT(130), + [2142] = {.count = 1, .reusable = true}, SHIFT(71), + [2144] = {.count = 1, .reusable = true}, SHIFT(87), + [2146] = {.count = 1, .reusable = true}, SHIFT(112), + [2148] = {.count = 1, .reusable = true}, SHIFT(92), + [2150] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_pair, 3, .production_id = 66), + [2152] = {.count = 1, .reusable = true}, SHIFT(94), + [2154] = {.count = 1, .reusable = true}, SHIFT(86), + [2156] = {.count = 1, .reusable = true}, SHIFT(473), + [2158] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), + [2160] = {.count = 1, .reusable = true}, SHIFT(96), + [2162] = {.count = 1, .reusable = true}, SHIFT(256), + [2164] = {.count = 1, .reusable = true}, SHIFT(241), + [2166] = {.count = 1, .reusable = true}, SHIFT(68), + [2168] = {.count = 1, .reusable = true}, SHIFT(156), + [2170] = {.count = 1, .reusable = true}, SHIFT(118), + [2172] = {.count = 1, .reusable = true}, SHIFT(269), + [2174] = {.count = 1, .reusable = true}, SHIFT(115), + [2176] = {.count = 1, .reusable = true}, SHIFT(113), + [2178] = {.count = 1, .reusable = true}, SHIFT(451), + [2180] = {.count = 1, .reusable = true}, SHIFT(548), + [2182] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 3, .production_id = 56), + [2184] = {.count = 1, .reusable = true}, SHIFT(220), + [2186] = {.count = 1, .reusable = true}, SHIFT(95), + [2188] = {.count = 1, .reusable = true}, SHIFT(192), + [2190] = {.count = 1, .reusable = true}, REDUCE(sym_init_declarator, 3, .production_id = 45), + [2192] = {.count = 1, .reusable = false}, REDUCE(sym_attribute_specifier, 4), + [2194] = {.count = 1, .reusable = true}, REDUCE(sym_attribute_specifier, 4), + [2196] = {.count = 1, .reusable = true}, SHIFT(129), + [2198] = {.count = 1, .reusable = true}, SHIFT(104), + [2200] = {.count = 1, .reusable = true}, SHIFT(72), + [2202] = {.count = 1, .reusable = true}, REDUCE(aux_sym_argument_list_repeat1, 2), + [2204] = {.count = 1, .reusable = true}, SHIFT(128), + [2206] = {.count = 1, .reusable = true}, SHIFT(216), + [2208] = {.count = 1, .reusable = true}, SHIFT(462), + [2210] = {.count = 1, .reusable = true}, SHIFT(456), + [2212] = {.count = 1, .reusable = true}, SHIFT(431), + [2214] = {.count = 1, .reusable = true}, REDUCE(sym_bitfield_clause, 2), + [2216] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 3, .production_id = 37), + [2218] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 34), + [2220] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 50), + [2222] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 51), + [2224] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 5, .production_id = 46), + [2226] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 14), + [2228] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 35), + [2230] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 13), + [2232] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 4, .production_id = 27), + [2234] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 2, .production_id = 37), + [2236] = {.count = 1, .reusable = true}, SHIFT(501), + [2238] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 3, .production_id = 14), + [2240] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 13), + [2242] = {.count = 1, .reusable = true}, SHIFT(538), + [2244] = {.count = 1, .reusable = true}, SHIFT(46), + [2246] = {.count = 1, .reusable = true}, SHIFT(62), + [2248] = {.count = 1, .reusable = true}, SHIFT(52), + [2250] = {.count = 1, .reusable = true}, SHIFT(411), + [2252] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 3, .production_id = 27), + [2254] = {.count = 1, .reusable = true}, SHIFT(419), + [2256] = {.count = 1, .reusable = true}, SHIFT(60), + [2258] = {.count = 1, .reusable = true}, SHIFT(442), + [2260] = {.count = 1, .reusable = true}, SHIFT(437), + [2262] = {.count = 1, .reusable = true}, SHIFT(435), + [2264] = {.count = 1, .reusable = true}, SHIFT(495), + [2266] = {.count = 1, .reusable = true}, SHIFT(903), + [2268] = {.count = 1, .reusable = true}, SHIFT(425), + [2270] = {.count = 1, .reusable = true}, SHIFT(434), + [2272] = {.count = 1, .reusable = true}, SHIFT(422), + [2274] = {.count = 1, .reusable = true}, SHIFT(420), + [2276] = {.count = 1, .reusable = true}, SHIFT(439), + [2278] = {.count = 1, .reusable = true}, SHIFT(438), + [2280] = {.count = 1, .reusable = false}, REDUCE(sym_storage_class_specifier, 1), + [2282] = {.count = 1, .reusable = true}, REDUCE(sym_storage_class_specifier, 1), + [2284] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 2, .production_id = 37), [2286] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 14), - [2288] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 13), - [2290] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 4, .production_id = 27), - [2292] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 3, .production_id = 14), - [2294] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 2, .production_id = 37), - [2296] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 13), - [2298] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 3, .production_id = 27), - [2300] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 3, .production_id = 37), - [2302] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 50), - [2304] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 51), - [2306] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 35), - [2308] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 5, .production_id = 46), - [2310] = {.count = 2, .reusable = false}, REDUCE(sym_sized_type_specifier, 1), SHIFT(747), - [2313] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 1), - [2315] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 1), - [2317] = {.count = 1, .reusable = false}, SHIFT(709), - [2319] = {.count = 1, .reusable = false}, SHIFT(745), - [2321] = {.count = 1, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2323] = {.count = 1, .reusable = true}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2325] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(709), - [2328] = {.count = 1, .reusable = false}, SHIFT(798), - [2330] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), - [2332] = {.count = 1, .reusable = false}, SHIFT(794), - [2334] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), - [2336] = {.count = 1, .reusable = false}, SHIFT(803), - [2338] = {.count = 1, .reusable = true}, SHIFT(893), - [2340] = {.count = 1, .reusable = false}, SHIFT(762), - [2342] = {.count = 1, .reusable = false}, SHIFT(807), - [2344] = {.count = 1, .reusable = false}, SHIFT(799), - [2346] = {.count = 1, .reusable = false}, SHIFT(796), - [2348] = {.count = 1, .reusable = false}, SHIFT(810), - [2350] = {.count = 1, .reusable = false}, SHIFT(795), - [2352] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), - [2354] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), - [2356] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), - [2358] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), - [2360] = {.count = 1, .reusable = false}, SHIFT(797), - [2362] = {.count = 1, .reusable = false}, SHIFT(808), - [2364] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), - [2366] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), - [2368] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), - [2370] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), - [2372] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 2, .production_id = 6), - [2374] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 2, .production_id = 6), - [2376] = {.count = 1, .reusable = true}, SHIFT(397), - [2378] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 2, .production_id = 6), - [2380] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 2, .production_id = 6), - [2382] = {.count = 1, .reusable = true}, SHIFT(864), - [2384] = {.count = 2, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(668), + [2288] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 34), + [2290] = {.count = 1, .reusable = true}, SHIFT(887), + [2292] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 50), + [2294] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 4, .production_id = 27), + [2296] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 5, .production_id = 46), + [2298] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 3, .production_id = 14), + [2300] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 13), + [2302] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 51), + [2304] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 3, .production_id = 27), + [2306] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 3, .production_id = 37), + [2308] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 13), + [2310] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 35), + [2312] = {.count = 2, .reusable = false}, REDUCE(sym_sized_type_specifier, 1), SHIFT(742), + [2315] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 1), + [2317] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 1), + [2319] = {.count = 1, .reusable = false}, SHIFT(713), + [2321] = {.count = 1, .reusable = false}, SHIFT(741), + [2323] = {.count = 1, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2325] = {.count = 1, .reusable = true}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2327] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(713), + [2330] = {.count = 1, .reusable = false}, SHIFT(806), + [2332] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), + [2334] = {.count = 1, .reusable = false}, SHIFT(795), + [2336] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), + [2338] = {.count = 1, .reusable = false}, SHIFT(807), + [2340] = {.count = 1, .reusable = false}, SHIFT(798), + [2342] = {.count = 1, .reusable = false}, SHIFT(797), + [2344] = {.count = 1, .reusable = false}, SHIFT(801), + [2346] = {.count = 1, .reusable = false}, SHIFT(757), + [2348] = {.count = 1, .reusable = false}, SHIFT(802), + [2350] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), + [2352] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), + [2354] = {.count = 1, .reusable = false}, SHIFT(805), + [2356] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), + [2358] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), + [2360] = {.count = 1, .reusable = false}, SHIFT(794), + [2362] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), + [2364] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), + [2366] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [2368] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [2370] = {.count = 1, .reusable = false}, SHIFT(809), + [2372] = {.count = 2, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(668), + [2375] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 2, .production_id = 6), + [2377] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 2, .production_id = 6), + [2379] = {.count = 1, .reusable = true}, SHIFT(407), + [2381] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 2, .production_id = 6), + [2383] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 2, .production_id = 6), + [2385] = {.count = 1, .reusable = true}, SHIFT(894), [2387] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 2, .production_id = 6), [2389] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 2, .production_id = 6), - [2391] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 2), - [2393] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 2), - [2395] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 4), - [2397] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 4), - [2399] = {.count = 2, .reusable = true}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(710), - [2402] = {.count = 1, .reusable = true}, SHIFT(348), - [2404] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 2), - [2406] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 2), - [2408] = {.count = 1, .reusable = false}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 42), - [2410] = {.count = 1, .reusable = true}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 42), - [2412] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 2, .production_id = 7), - [2414] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 2, .production_id = 7), - [2416] = {.count = 1, .reusable = true}, SHIFT(296), - [2418] = {.count = 1, .reusable = true}, SHIFT(318), - [2420] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), - [2422] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), - [2424] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 3, .production_id = 20), - [2426] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 3, .production_id = 20), - [2428] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), - [2430] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), - [2432] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 2, .production_id = 7), - [2434] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 2, .production_id = 7), - [2436] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 5), - [2438] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 5), - [2440] = {.count = 1, .reusable = true}, SHIFT(180), - [2442] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 3, .production_id = 20), - [2444] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 3, .production_id = 20), - [2446] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 3), - [2448] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 3), - [2450] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 2, .production_id = 7), - [2452] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 2, .production_id = 7), - [2454] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 3, .production_id = 20), - [2456] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 3, .production_id = 20), - [2458] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 3), - [2460] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 3), - [2462] = {.count = 1, .reusable = true}, SHIFT(853), + [2391] = {.count = 1, .reusable = false}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 42), + [2393] = {.count = 1, .reusable = true}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 42), + [2395] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 3, .production_id = 20), + [2397] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 3, .production_id = 20), + [2399] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 3, .production_id = 20), + [2401] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 3, .production_id = 20), + [2403] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 2, .production_id = 7), + [2405] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 2, .production_id = 7), + [2407] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 2, .production_id = 7), + [2409] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 2, .production_id = 7), + [2411] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), + [2413] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), + [2415] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), + [2417] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), + [2419] = {.count = 1, .reusable = true}, SHIFT(311), + [2421] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 2, .production_id = 7), + [2423] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 2, .production_id = 7), + [2425] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 3), + [2427] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 3), + [2429] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 3), + [2431] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 3), + [2433] = {.count = 2, .reusable = true}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(716), + [2436] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 3, .production_id = 20), + [2438] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 3, .production_id = 20), + [2440] = {.count = 1, .reusable = true}, SHIFT(343), + [2442] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 2), + [2444] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 2), + [2446] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 5), + [2448] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 5), + [2450] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 4), + [2452] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 4), + [2454] = {.count = 1, .reusable = true}, SHIFT(179), + [2456] = {.count = 1, .reusable = true}, SHIFT(360), + [2458] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 2), + [2460] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 2), + [2462] = {.count = 1, .reusable = true}, SHIFT(861), [2464] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 1, .production_id = 37), - [2466] = {.count = 1, .reusable = true}, SHIFT(668), - [2468] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 3, .production_id = 11), - [2470] = {.count = 2, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [2473] = {.count = 3, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(710), - [2477] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 1, .production_id = 2), - [2479] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 2, .production_id = 2), - [2481] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 2, .production_id = 11), - [2483] = {.count = 1, .reusable = false}, SHIFT(747), - [2485] = {.count = 1, .reusable = false}, SHIFT(849), - [2487] = {.count = 1, .reusable = true}, SHIFT(793), - [2489] = {.count = 1, .reusable = true}, SHIFT(765), - [2491] = {.count = 1, .reusable = false}, SHIFT(825), - [2493] = {.count = 1, .reusable = true}, SHIFT(801), + [2466] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 2, .production_id = 11), + [2468] = {.count = 1, .reusable = true}, SHIFT(668), + [2470] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 2, .production_id = 2), + [2472] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 1, .production_id = 2), + [2474] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 3, .production_id = 11), + [2476] = {.count = 2, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [2479] = {.count = 3, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(716), + [2483] = {.count = 1, .reusable = false}, SHIFT(742), + [2485] = {.count = 1, .reusable = false}, SHIFT(846), + [2487] = {.count = 1, .reusable = true}, SHIFT(799), + [2489] = {.count = 1, .reusable = true}, SHIFT(768), + [2491] = {.count = 1, .reusable = false}, SHIFT(859), + [2493] = {.count = 1, .reusable = true}, SHIFT(808), [2495] = {.count = 1, .reusable = true}, SHIFT(766), - [2497] = {.count = 1, .reusable = true}, SHIFT(806), - [2499] = {.count = 1, .reusable = true}, SHIFT(770), - [2501] = {.count = 1, .reusable = true}, SHIFT(825), - [2503] = {.count = 1, .reusable = true}, SHIFT(619), - [2505] = {.count = 1, .reusable = true}, SHIFT(539), - [2507] = {.count = 1, .reusable = true}, SHIFT(675), - [2509] = {.count = 1, .reusable = true}, SHIFT(686), + [2497] = {.count = 1, .reusable = true}, SHIFT(804), + [2499] = {.count = 1, .reusable = true}, SHIFT(769), + [2501] = {.count = 1, .reusable = true}, SHIFT(846), + [2503] = {.count = 1, .reusable = true}, SHIFT(629), + [2505] = {.count = 1, .reusable = true}, SHIFT(504), + [2507] = {.count = 1, .reusable = true}, SHIFT(670), + [2509] = {.count = 1, .reusable = true}, SHIFT(709), [2511] = {.count = 1, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), [2513] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1146), - [2516] = {.count = 1, .reusable = true}, REDUCE(sym_function_declarator, 3, .production_id = 29), + [2516] = {.count = 1, .reusable = true}, REDUCE(sym_function_declarator, 2, .production_id = 29), [2518] = {.count = 1, .reusable = true}, SHIFT(1146), - [2520] = {.count = 1, .reusable = true}, REDUCE(sym_function_declarator, 2, .production_id = 29), - [2522] = {.count = 1, .reusable = true}, SHIFT(783), - [2524] = {.count = 1, .reusable = true}, SHIFT(139), - [2526] = {.count = 1, .reusable = true}, SHIFT(552), - [2528] = {.count = 1, .reusable = true}, SHIFT(422), - [2530] = {.count = 1, .reusable = true}, SHIFT(477), + [2520] = {.count = 1, .reusable = true}, REDUCE(sym_function_declarator, 3, .production_id = 29), + [2522] = {.count = 1, .reusable = true}, SHIFT(782), + [2524] = {.count = 1, .reusable = true}, SHIFT(199), + [2526] = {.count = 1, .reusable = true}, SHIFT(553), + [2528] = {.count = 1, .reusable = true}, SHIFT(381), + [2530] = {.count = 1, .reusable = true}, SHIFT(436), [2532] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 4), - [2534] = {.count = 1, .reusable = true}, SHIFT(811), - [2536] = {.count = 1, .reusable = true}, SHIFT(199), - [2538] = {.count = 1, .reusable = true}, SHIFT(784), - [2540] = {.count = 1, .reusable = true}, SHIFT(777), - [2542] = {.count = 1, .reusable = true}, SHIFT(837), - [2544] = {.count = 1, .reusable = true}, SHIFT(255), - [2546] = {.count = 1, .reusable = true}, SHIFT(780), - [2548] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 2), - [2550] = {.count = 1, .reusable = true}, SHIFT(812), - [2552] = {.count = 1, .reusable = true}, SHIFT(815), - [2554] = {.count = 1, .reusable = true}, SHIFT(284), - [2556] = {.count = 1, .reusable = true}, SHIFT(789), - [2558] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 3), - [2560] = {.count = 1, .reusable = true}, SHIFT(816), - [2562] = {.count = 1, .reusable = true}, SHIFT(849), - [2564] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 26), - [2566] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 43), - [2568] = {.count = 1, .reusable = true}, SHIFT(800), - [2570] = {.count = 1, .reusable = true}, SHIFT(682), - [2572] = {.count = 1, .reusable = true}, SHIFT(407), - [2574] = {.count = 1, .reusable = true}, SHIFT(622), - [2576] = {.count = 1, .reusable = true}, SHIFT(695), - [2578] = {.count = 1, .reusable = true}, SHIFT(869), - [2580] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 43), - [2582] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [2584] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 26), - [2586] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 5, .production_id = 65), - [2588] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 3, .production_id = 44), - [2590] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 4, .production_id = 59), - [2592] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 4, .production_id = 44), - [2594] = {.count = 1, .reusable = true}, SHIFT(809), - [2596] = {.count = 1, .reusable = true}, SHIFT(263), - [2598] = {.count = 1, .reusable = true}, SHIFT(408), - [2600] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(511), - [2603] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), - [2605] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(1003), - [2608] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 43), - [2610] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .production_id = 40), - [2612] = {.count = 1, .reusable = true}, SHIFT(242), - [2614] = {.count = 1, .reusable = true}, SHIFT(237), - [2616] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [2618] = {.count = 1, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 26), - [2620] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 3, .production_id = 44), - [2622] = {.count = 1, .reusable = true}, SHIFT(250), - [2624] = {.count = 1, .reusable = true}, SHIFT(156), - [2626] = {.count = 1, .reusable = true}, SHIFT(163), - [2628] = {.count = 1, .reusable = true}, SHIFT(278), - [2630] = {.count = 1, .reusable = true}, SHIFT(258), - [2632] = {.count = 1, .reusable = true}, SHIFT(476), - [2634] = {.count = 1, .reusable = true}, SHIFT(1003), - [2636] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 26), - [2638] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 4, .production_id = 59), - [2640] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 4, .production_id = 44), - [2642] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 26), - [2644] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 5, .production_id = 65), - [2646] = {.count = 1, .reusable = true}, REDUCE(sym_function_field_declarator, 2, .production_id = 29), - [2648] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 2, .production_id = 27), - [2650] = {.count = 1, .reusable = true}, SHIFT(412), - [2652] = {.count = 1, .reusable = true}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 26), - [2654] = {.count = 1, .reusable = true}, SHIFT(630), - [2656] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [2658] = {.count = 1, .reusable = true}, REDUCE(sym_function_type_declarator, 2, .production_id = 29), - [2660] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 4, .production_id = 44), - [2662] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [2664] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 3, .production_id = 44), - [2666] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 4, .production_id = 59), - [2668] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 43), - [2670] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 26), - [2672] = {.count = 1, .reusable = true}, SHIFT(693), - [2674] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 5, .production_id = 65), - [2676] = {.count = 1, .reusable = true}, SHIFT(677), - [2678] = {.count = 1, .reusable = false}, SHIFT(340), - [2680] = {.count = 1, .reusable = true}, SHIFT(905), - [2682] = {.count = 1, .reusable = false}, SHIFT(1031), - [2684] = {.count = 1, .reusable = false}, SHIFT_EXTRA(), - [2686] = {.count = 1, .reusable = true}, SHIFT(828), - [2688] = {.count = 1, .reusable = false}, SHIFT(309), - [2690] = {.count = 1, .reusable = false}, SHIFT(1127), - [2692] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 3), - [2694] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 54), - [2696] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_parenthesized_declarator, 3), - [2698] = {.count = 1, .reusable = true}, SHIFT(920), - [2700] = {.count = 1, .reusable = true}, SHIFT(1074), - [2702] = {.count = 1, .reusable = true}, SHIFT(736), - [2704] = {.count = 1, .reusable = false}, SHIFT(327), - [2706] = {.count = 1, .reusable = true}, SHIFT(879), - [2708] = {.count = 1, .reusable = true}, SHIFT(883), - [2710] = {.count = 1, .reusable = true}, SHIFT(310), - [2712] = {.count = 2, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 47), SHIFT_REPEAT(800), - [2715] = {.count = 1, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 47), - [2717] = {.count = 1, .reusable = true}, SHIFT(863), - [2719] = {.count = 1, .reusable = true}, SHIFT(814), - [2721] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 2), - [2723] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 29), - [2725] = {.count = 1, .reusable = false}, SHIFT(339), - [2727] = {.count = 1, .reusable = false}, SHIFT(673), - [2729] = {.count = 1, .reusable = false}, SHIFT(1023), - [2731] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 3, .production_id = 38), - [2733] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 3, .production_id = 36), - [2735] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 44), - [2737] = {.count = 1, .reusable = false}, SHIFT(733), - [2739] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 4, .production_id = 55), - [2741] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_literal_repeat1, 2), - [2743] = {.count = 2, .reusable = true}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(879), - [2746] = {.count = 1, .reusable = false}, SHIFT(188), - [2748] = {.count = 1, .reusable = true}, SHIFT(887), - [2750] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 65), - [2752] = {.count = 1, .reusable = false}, SHIFT(398), - [2754] = {.count = 1, .reusable = false}, SHIFT(321), - [2756] = {.count = 1, .reusable = true}, SHIFT(865), - [2758] = {.count = 1, .reusable = false}, SHIFT(341), - [2760] = {.count = 1, .reusable = false}, SHIFT(1059), - [2762] = {.count = 1, .reusable = true}, SHIFT(891), - [2764] = {.count = 1, .reusable = true}, SHIFT(295), - [2766] = {.count = 1, .reusable = false}, SHIFT(349), - [2768] = {.count = 1, .reusable = true}, SHIFT(872), - [2770] = {.count = 1, .reusable = false}, SHIFT(179), - [2772] = {.count = 1, .reusable = false}, SHIFT(175), - [2774] = {.count = 1, .reusable = false}, SHIFT(1054), - [2776] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 44), - [2778] = {.count = 1, .reusable = true}, SHIFT(846), - [2780] = {.count = 1, .reusable = false}, SHIFT(346), - [2782] = {.count = 1, .reusable = true}, SHIFT(899), - [2784] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 2, .production_id = 17), - [2786] = {.count = 1, .reusable = false}, SHIFT(732), - [2788] = {.count = 1, .reusable = true}, SHIFT(877), - [2790] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 59), - [2792] = {.count = 1, .reusable = false}, SHIFT(662), - [2794] = {.count = 1, .reusable = false}, SHIFT(1067), - [2796] = {.count = 1, .reusable = false}, SHIFT(399), - [2798] = {.count = 1, .reusable = true}, SHIFT(882), - [2800] = {.count = 1, .reusable = true}, SHIFT(886), - [2802] = {.count = 1, .reusable = true}, SHIFT(297), - [2804] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 62), - [2806] = {.count = 1, .reusable = false}, SHIFT(344), - [2808] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 18), - [2810] = {.count = 1, .reusable = true}, SHIFT(880), - [2812] = {.count = 1, .reusable = true}, SHIFT(182), - [2814] = {.count = 1, .reusable = false}, SHIFT(684), - [2816] = {.count = 1, .reusable = false}, SHIFT(1073), - [2818] = {.count = 1, .reusable = true}, SHIFT(439), - [2820] = {.count = 1, .reusable = true}, SHIFT(731), - [2822] = {.count = 1, .reusable = true}, SHIFT(919), - [2824] = {.count = 1, .reusable = true}, SHIFT(973), - [2826] = {.count = 1, .reusable = true}, SHIFT(913), - [2828] = {.count = 1, .reusable = true}, SHIFT(737), - [2830] = {.count = 2, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(953), - [2833] = {.count = 1, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [2835] = {.count = 1, .reusable = true}, SHIFT(553), - [2837] = {.count = 1, .reusable = true}, SHIFT(791), - [2839] = {.count = 1, .reusable = true}, SHIFT(259), - [2841] = {.count = 1, .reusable = true}, SHIFT(749), - [2843] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(400), - [2846] = {.count = 1, .reusable = true}, SHIFT(909), - [2848] = {.count = 1, .reusable = true}, SHIFT(755), - [2850] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_designator, 3), - [2852] = {.count = 2, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(553), - [2855] = {.count = 1, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [2857] = {.count = 1, .reusable = true}, SHIFT(982), - [2859] = {.count = 1, .reusable = true}, SHIFT(983), - [2861] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 1, .production_id = 19), - [2863] = {.count = 1, .reusable = true}, SHIFT(510), - [2865] = {.count = 1, .reusable = true}, SHIFT(730), - [2867] = {.count = 1, .reusable = true}, SHIFT(946), - [2869] = {.count = 1, .reusable = true}, SHIFT(281), - [2871] = {.count = 1, .reusable = true}, SHIFT(149), - [2873] = {.count = 1, .reusable = true}, SHIFT(735), - [2875] = {.count = 1, .reusable = true}, SHIFT(272), - [2877] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 47), SHIFT_REPEAT(783), - [2880] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 47), - [2882] = {.count = 1, .reusable = true}, REDUCE(sym_field_designator, 2, .production_id = 63), - [2884] = {.count = 1, .reusable = true}, SHIFT(391), - [2886] = {.count = 1, .reusable = true}, SHIFT(273), - [2888] = {.count = 1, .reusable = true}, SHIFT(229), - [2890] = {.count = 1, .reusable = true}, SHIFT(288), - [2892] = {.count = 1, .reusable = true}, SHIFT(152), - [2894] = {.count = 2, .reusable = true}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(528), - [2897] = {.count = 1, .reusable = true}, SHIFT(160), - [2899] = {.count = 1, .reusable = true}, SHIFT(243), - [2901] = {.count = 1, .reusable = true}, SHIFT(778), - [2903] = {.count = 1, .reusable = true}, SHIFT(195), - [2905] = {.count = 1, .reusable = true}, SHIFT(245), - [2907] = {.count = 2, .reusable = true}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 47), SHIFT_REPEAT(809), - [2910] = {.count = 1, .reusable = true}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 47), - [2912] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(982), - [2915] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), - [2917] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 4), - [2919] = {.count = 1, .reusable = true}, SHIFT(495), - [2921] = {.count = 1, .reusable = true}, SHIFT(488), - [2923] = {.count = 1, .reusable = false}, SHIFT(187), - [2925] = {.count = 1, .reusable = false}, SHIFT(1043), - [2927] = {.count = 1, .reusable = false}, SHIFT(338), - [2929] = {.count = 1, .reusable = false}, SHIFT(1057), - [2931] = {.count = 1, .reusable = false}, SHIFT(311), - [2933] = {.count = 1, .reusable = false}, SHIFT(1115), - [2935] = {.count = 1, .reusable = false}, SHIFT(304), - [2937] = {.count = 1, .reusable = false}, SHIFT(1140), - [2939] = {.count = 1, .reusable = false}, SHIFT(352), - [2941] = {.count = 1, .reusable = false}, SHIFT(1061), - [2943] = {.count = 1, .reusable = false}, SHIFT(617), - [2945] = {.count = 1, .reusable = false}, SHIFT(1065), - [2947] = {.count = 1, .reusable = false}, SHIFT(706), - [2949] = {.count = 1, .reusable = false}, SHIFT(1028), - [2951] = {.count = 1, .reusable = false}, SHIFT(1008), - [2953] = {.count = 1, .reusable = true}, SHIFT(1008), - [2955] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 2), - [2957] = {.count = 1, .reusable = false}, SHIFT(653), - [2959] = {.count = 1, .reusable = false}, SHIFT(1069), - [2961] = {.count = 1, .reusable = true}, SHIFT(968), - [2963] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 3), - [2965] = {.count = 1, .reusable = false}, SHIFT(347), - [2967] = {.count = 1, .reusable = false}, SHIFT(1133), - [2969] = {.count = 1, .reusable = false}, SHIFT(170), - [2971] = {.count = 1, .reusable = false}, SHIFT(1060), - [2973] = {.count = 1, .reusable = false}, SHIFT(679), - [2975] = {.count = 1, .reusable = false}, SHIFT(1072), - [2977] = {.count = 1, .reusable = false}, SHIFT(312), - [2979] = {.count = 1, .reusable = false}, SHIFT(1045), - [2981] = {.count = 1, .reusable = false}, SHIFT(694), - [2983] = {.count = 1, .reusable = false}, SHIFT(1016), - [2985] = {.count = 1, .reusable = false}, SHIFT(688), - [2987] = {.count = 1, .reusable = false}, SHIFT(1075), - [2989] = {.count = 1, .reusable = true}, SHIFT(691), - [2991] = {.count = 1, .reusable = true}, SHIFT(442), - [2993] = {.count = 1, .reusable = true}, SHIFT(670), - [2995] = {.count = 1, .reusable = true}, SHIFT(702), - [2997] = {.count = 1, .reusable = true}, SHIFT(703), - [2999] = {.count = 1, .reusable = true}, SHIFT(928), - [3001] = {.count = 1, .reusable = true}, SHIFT(431), - [3003] = {.count = 1, .reusable = true}, SHIFT(56), - [3005] = {.count = 1, .reusable = true}, SHIFT(222), - [3007] = {.count = 1, .reusable = true}, SHIFT(240), - [3009] = {.count = 1, .reusable = true}, SHIFT(241), - [3011] = {.count = 1, .reusable = true}, SHIFT(958), - [3013] = {.count = 1, .reusable = true}, SHIFT(672), - [3015] = {.count = 1, .reusable = false}, SHIFT(380), - [3017] = {.count = 1, .reusable = true}, SHIFT(669), - [3019] = {.count = 1, .reusable = true}, SHIFT(701), - [3021] = {.count = 1, .reusable = true}, SHIFT(253), - [3023] = {.count = 1, .reusable = true}, SHIFT(704), - [3025] = {.count = 1, .reusable = true}, SHIFT(334), - [3027] = {.count = 1, .reusable = true}, SHIFT(329), - [3029] = {.count = 1, .reusable = true}, SHIFT(189), - [3031] = {.count = 1, .reusable = true}, SHIFT(689), - [3033] = {.count = 1, .reusable = true}, SHIFT(700), - [3035] = {.count = 1, .reusable = true}, SHIFT(314), - [3037] = {.count = 1, .reusable = true}, SHIFT(313), - [3039] = {.count = 1, .reusable = true}, SHIFT(302), - [3041] = {.count = 1, .reusable = true}, SHIFT(157), - [3043] = {.count = 1, .reusable = true}, SHIFT(683), - [3045] = {.count = 1, .reusable = true}, SHIFT(283), - [3047] = {.count = 1, .reusable = true}, SHIFT(461), - [3049] = {.count = 1, .reusable = false}, SHIFT(8), - [3051] = {.count = 1, .reusable = true}, SHIFT(315), - [3053] = {.count = 1, .reusable = true}, SHIFT(696), - [3055] = {.count = 1, .reusable = true}, SHIFT(191), - [3057] = {.count = 1, .reusable = true}, SHIFT(186), - [3059] = {.count = 1, .reusable = true}, SHIFT(328), - [3061] = {.count = 1, .reusable = true}, SHIFT(337), - [3063] = {.count = 1, .reusable = true}, SHIFT(183), - [3065] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 4, .production_id = 50), - [3067] = {.count = 1, .reusable = true}, SHIFT(185), - [3069] = {.count = 1, .reusable = true}, SHIFT(177), - [3071] = {.count = 1, .reusable = true}, SHIFT(146), - [3073] = {.count = 1, .reusable = true}, SHIFT(342), - [3075] = {.count = 1, .reusable = true}, SHIFT(351), - [3077] = {.count = 1, .reusable = true}, SHIFT(174), - [3079] = {.count = 1, .reusable = true}, SHIFT(359), - [3081] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 3, .production_id = 34), - [3083] = {.count = 1, .reusable = true}, SHIFT(607), - [3085] = {.count = 1, .reusable = true}, SHIFT(661), - [3087] = {.count = 1, .reusable = true}, SHIFT(155), - [3089] = {.count = 1, .reusable = true}, SHIFT(660), - [3091] = {.count = 1, .reusable = true}, SHIFT(154), - [3093] = {.count = 1, .reusable = true}, SHIFT(652), - [3095] = {.count = 1, .reusable = true}, SHIFT(47), - [3097] = {.count = 1, .reusable = true}, SHIFT(685), - [3099] = {.count = 1, .reusable = true}, SHIFT(699), - [3101] = {.count = 1, .reusable = true}, SHIFT(674), - [3103] = {.count = 1, .reusable = true}, SHIFT(860), - [3105] = {.count = 1, .reusable = false}, SHIFT(13), - [3107] = {.count = 1, .reusable = true}, SHIFT(3), - [3109] = {.count = 1, .reusable = true}, SHIFT(227), - [3111] = {.count = 1, .reusable = true}, ACCEPT_INPUT(), - [3113] = {.count = 1, .reusable = true}, SHIFT(1128), - [3115] = {.count = 1, .reusable = true}, SHIFT(625), - [3117] = {.count = 1, .reusable = true}, SHIFT(624), - [3119] = {.count = 1, .reusable = true}, SHIFT(623), - [3121] = {.count = 1, .reusable = false}, SHIFT(374), - [3123] = {.count = 1, .reusable = false}, SHIFT(381), - [3125] = {.count = 1, .reusable = true}, SHIFT(383), - [3127] = {.count = 1, .reusable = true}, SHIFT(376), - [3129] = {.count = 1, .reusable = true}, SHIFT(1010), + [2534] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 2), + [2536] = {.count = 1, .reusable = true}, SHIFT(777), + [2538] = {.count = 1, .reusable = true}, SHIFT(140), + [2540] = {.count = 1, .reusable = true}, SHIFT(830), + [2542] = {.count = 1, .reusable = true}, SHIFT(246), + [2544] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 3), + [2546] = {.count = 1, .reusable = true}, SHIFT(792), + [2548] = {.count = 1, .reusable = true}, SHIFT(819), + [2550] = {.count = 1, .reusable = true}, SHIFT(813), + [2552] = {.count = 1, .reusable = true}, SHIFT(781), + [2554] = {.count = 1, .reusable = true}, SHIFT(825), + [2556] = {.count = 1, .reusable = true}, SHIFT(783), + [2558] = {.count = 1, .reusable = true}, SHIFT(815), + [2560] = {.count = 1, .reusable = true}, SHIFT(277), + [2562] = {.count = 1, .reusable = true}, SHIFT(803), + [2564] = {.count = 1, .reusable = true}, SHIFT(644), + [2566] = {.count = 1, .reusable = true}, SHIFT(377), + [2568] = {.count = 1, .reusable = true}, SHIFT(859), + [2570] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 26), + [2572] = {.count = 1, .reusable = true}, SHIFT(682), + [2574] = {.count = 1, .reusable = true}, SHIFT(705), + [2576] = {.count = 1, .reusable = true}, SHIFT(874), + [2578] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 43), + [2580] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 4, .production_id = 44), + [2582] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 3, .production_id = 44), + [2584] = {.count = 1, .reusable = true}, SHIFT(884), + [2586] = {.count = 1, .reusable = true}, SHIFT(170), + [2588] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [2590] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 43), + [2592] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 26), + [2594] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 4, .production_id = 59), + [2596] = {.count = 1, .reusable = true}, SHIFT(898), + [2598] = {.count = 1, .reusable = true}, SHIFT(357), + [2600] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 5, .production_id = 65), + [2602] = {.count = 1, .reusable = true}, SHIFT(879), + [2604] = {.count = 1, .reusable = true}, SHIFT(301), + [2606] = {.count = 1, .reusable = true}, SHIFT(897), + [2608] = {.count = 1, .reusable = true}, SHIFT(318), + [2610] = {.count = 1, .reusable = true}, SHIFT(810), + [2612] = {.count = 1, .reusable = true}, SHIFT(251), + [2614] = {.count = 1, .reusable = true}, SHIFT(397), + [2616] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 43), + [2618] = {.count = 1, .reusable = true}, SHIFT(272), + [2620] = {.count = 1, .reusable = true}, SHIFT(163), + [2622] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 26), + [2624] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(491), + [2627] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), + [2629] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(999), + [2632] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [2634] = {.count = 1, .reusable = true}, SHIFT(242), + [2636] = {.count = 1, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 26), + [2638] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 3, .production_id = 44), + [2640] = {.count = 1, .reusable = true}, SHIFT(293), + [2642] = {.count = 1, .reusable = true}, SHIFT(248), + [2644] = {.count = 1, .reusable = true}, SHIFT(139), + [2646] = {.count = 1, .reusable = true}, SHIFT(281), + [2648] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 5, .production_id = 65), + [2650] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 4, .production_id = 44), + [2652] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 4, .production_id = 59), + [2654] = {.count = 1, .reusable = true}, REDUCE(sym_function_field_declarator, 2, .production_id = 29), + [2656] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 26), + [2658] = {.count = 1, .reusable = true}, SHIFT(427), + [2660] = {.count = 1, .reusable = true}, SHIFT(999), + [2662] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .production_id = 40), + [2664] = {.count = 1, .reusable = true}, SHIFT(693), + [2666] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 43), + [2668] = {.count = 1, .reusable = true}, SHIFT(388), + [2670] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 5, .production_id = 65), + [2672] = {.count = 1, .reusable = true}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 26), + [2674] = {.count = 1, .reusable = true}, SHIFT(677), + [2676] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 4, .production_id = 59), + [2678] = {.count = 1, .reusable = true}, SHIFT(628), + [2680] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 3, .production_id = 44), + [2682] = {.count = 1, .reusable = true}, REDUCE(sym_function_type_declarator, 2, .production_id = 29), + [2684] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 2, .production_id = 27), + [2686] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [2688] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 26), + [2690] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [2692] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 4, .production_id = 44), + [2694] = {.count = 1, .reusable = false}, SHIFT(359), + [2696] = {.count = 1, .reusable = true}, SHIFT(905), + [2698] = {.count = 1, .reusable = false}, SHIFT(1101), + [2700] = {.count = 1, .reusable = false}, SHIFT_EXTRA(), + [2702] = {.count = 1, .reusable = false}, SHIFT(177), + [2704] = {.count = 1, .reusable = false}, SHIFT(1141), + [2706] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_parenthesized_declarator, 3), + [2708] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 3, .production_id = 36), + [2710] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 3, .production_id = 38), + [2712] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 44), + [2714] = {.count = 1, .reusable = false}, SHIFT(308), + [2716] = {.count = 1, .reusable = true}, SHIFT(881), + [2718] = {.count = 1, .reusable = false}, SHIFT(731), + [2720] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 59), + [2722] = {.count = 1, .reusable = false}, SHIFT(403), + [2724] = {.count = 1, .reusable = true}, SHIFT(895), + [2726] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 62), + [2728] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 29), + [2730] = {.count = 1, .reusable = true}, SHIFT(816), + [2732] = {.count = 1, .reusable = false}, SHIFT(676), + [2734] = {.count = 1, .reusable = false}, SHIFT(1073), + [2736] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 2), + [2738] = {.count = 1, .reusable = false}, SHIFT(342), + [2740] = {.count = 1, .reusable = false}, SHIFT(654), + [2742] = {.count = 1, .reusable = false}, SHIFT(1067), + [2744] = {.count = 1, .reusable = false}, SHIFT(341), + [2746] = {.count = 1, .reusable = true}, SHIFT(877), + [2748] = {.count = 1, .reusable = true}, SHIFT(864), + [2750] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_literal_repeat1, 2), + [2752] = {.count = 2, .reusable = true}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(881), + [2755] = {.count = 1, .reusable = false}, SHIFT(185), + [2757] = {.count = 1, .reusable = false}, SHIFT(324), + [2759] = {.count = 1, .reusable = false}, SHIFT(1059), + [2761] = {.count = 1, .reusable = false}, SHIFT(171), + [2763] = {.count = 1, .reusable = true}, SHIFT(882), + [2765] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 65), + [2767] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 2, .production_id = 17), + [2769] = {.count = 1, .reusable = false}, SHIFT(735), + [2771] = {.count = 1, .reusable = true}, SHIFT(869), + [2773] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 54), + [2775] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 3), + [2777] = {.count = 1, .reusable = false}, SHIFT(330), + [2779] = {.count = 1, .reusable = false}, SHIFT(1094), + [2781] = {.count = 2, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 47), SHIFT_REPEAT(803), + [2784] = {.count = 1, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 47), + [2786] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 18), + [2788] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 44), + [2790] = {.count = 1, .reusable = true}, SHIFT(904), + [2792] = {.count = 1, .reusable = true}, SHIFT(1012), + [2794] = {.count = 1, .reusable = true}, SHIFT(755), + [2796] = {.count = 1, .reusable = false}, SHIFT(402), + [2798] = {.count = 1, .reusable = true}, SHIFT(857), + [2800] = {.count = 1, .reusable = false}, SHIFT(344), + [2802] = {.count = 1, .reusable = true}, SHIFT(868), + [2804] = {.count = 1, .reusable = false}, SHIFT(358), + [2806] = {.count = 1, .reusable = true}, SHIFT(900), + [2808] = {.count = 1, .reusable = true}, SHIFT(832), + [2810] = {.count = 1, .reusable = false}, SHIFT(339), + [2812] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 4, .production_id = 55), + [2814] = {.count = 1, .reusable = false}, SHIFT(696), + [2816] = {.count = 1, .reusable = false}, SHIFT(1024), + [2818] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_designator, 3), + [2820] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 1, .production_id = 19), + [2822] = {.count = 1, .reusable = true}, SHIFT(503), + [2824] = {.count = 1, .reusable = true}, SHIFT(910), + [2826] = {.count = 1, .reusable = true}, SHIFT(952), + [2828] = {.count = 2, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(961), + [2831] = {.count = 1, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [2833] = {.count = 1, .reusable = true}, SHIFT(942), + [2835] = {.count = 1, .reusable = true}, SHIFT(746), + [2837] = {.count = 1, .reusable = true}, SHIFT(733), + [2839] = {.count = 1, .reusable = true}, SHIFT(972), + [2841] = {.count = 1, .reusable = true}, SHIFT(946), + [2843] = {.count = 1, .reusable = true}, SHIFT(734), + [2845] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 47), SHIFT_REPEAT(782), + [2848] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 47), + [2850] = {.count = 1, .reusable = true}, SHIFT(255), + [2852] = {.count = 1, .reusable = true}, SHIFT(263), + [2854] = {.count = 1, .reusable = true}, SHIFT(290), + [2856] = {.count = 2, .reusable = true}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(539), + [2859] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(972), + [2862] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), + [2864] = {.count = 1, .reusable = true}, SHIFT(254), + [2866] = {.count = 1, .reusable = true}, SHIFT(541), + [2868] = {.count = 1, .reusable = true}, SHIFT(924), + [2870] = {.count = 1, .reusable = true}, SHIFT(752), + [2872] = {.count = 1, .reusable = true}, SHIFT(732), + [2874] = {.count = 1, .reusable = true}, SHIFT(751), + [2876] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(366), + [2879] = {.count = 1, .reusable = true}, SHIFT(193), + [2881] = {.count = 2, .reusable = true}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 47), SHIFT_REPEAT(810), + [2884] = {.count = 1, .reusable = true}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 47), + [2886] = {.count = 1, .reusable = true}, SHIFT(986), + [2888] = {.count = 1, .reusable = true}, SHIFT(273), + [2890] = {.count = 1, .reusable = true}, SHIFT(146), + [2892] = {.count = 1, .reusable = true}, SHIFT(554), + [2894] = {.count = 1, .reusable = true}, SHIFT(784), + [2896] = {.count = 1, .reusable = true}, SHIFT(286), + [2898] = {.count = 1, .reusable = true}, SHIFT(289), + [2900] = {.count = 2, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(554), + [2903] = {.count = 1, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [2905] = {.count = 1, .reusable = true}, SHIFT(778), + [2907] = {.count = 1, .reusable = true}, REDUCE(sym_field_designator, 2, .production_id = 63), + [2909] = {.count = 1, .reusable = true}, SHIFT(152), + [2911] = {.count = 1, .reusable = true}, SHIFT(166), + [2913] = {.count = 1, .reusable = true}, SHIFT(363), + [2915] = {.count = 1, .reusable = true}, SHIFT(282), + [2917] = {.count = 1, .reusable = true}, SHIFT(475), + [2919] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 3), + [2921] = {.count = 1, .reusable = false}, SHIFT(317), + [2923] = {.count = 1, .reusable = false}, SHIFT(1045), + [2925] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 2), + [2927] = {.count = 1, .reusable = false}, SHIFT(190), + [2929] = {.count = 1, .reusable = false}, SHIFT(1121), + [2931] = {.count = 1, .reusable = true}, SHIFT(470), + [2933] = {.count = 1, .reusable = false}, SHIFT(350), + [2935] = {.count = 1, .reusable = false}, SHIFT(1131), + [2937] = {.count = 1, .reusable = false}, SHIFT(304), + [2939] = {.count = 1, .reusable = false}, SHIFT(1071), + [2941] = {.count = 1, .reusable = false}, SHIFT(1003), + [2943] = {.count = 1, .reusable = true}, SHIFT(1003), + [2945] = {.count = 1, .reusable = false}, SHIFT(686), + [2947] = {.count = 1, .reusable = false}, SHIFT(1075), + [2949] = {.count = 1, .reusable = false}, SHIFT(707), + [2951] = {.count = 1, .reusable = false}, SHIFT(1072), + [2953] = {.count = 1, .reusable = true}, SHIFT(991), + [2955] = {.count = 1, .reusable = false}, SHIFT(667), + [2957] = {.count = 1, .reusable = false}, SHIFT(1069), + [2959] = {.count = 1, .reusable = false}, SHIFT(653), + [2961] = {.count = 1, .reusable = false}, SHIFT(1065), + [2963] = {.count = 1, .reusable = false}, SHIFT(338), + [2965] = {.count = 1, .reusable = false}, SHIFT(1061), + [2967] = {.count = 1, .reusable = false}, SHIFT(321), + [2969] = {.count = 1, .reusable = false}, SHIFT(1057), + [2971] = {.count = 1, .reusable = false}, SHIFT(684), + [2973] = {.count = 1, .reusable = false}, SHIFT(1031), + [2975] = {.count = 1, .reusable = false}, SHIFT(354), + [2977] = {.count = 1, .reusable = false}, SHIFT(1124), + [2979] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 4), + [2981] = {.count = 1, .reusable = false}, SHIFT(189), + [2983] = {.count = 1, .reusable = false}, SHIFT(1052), + [2985] = {.count = 1, .reusable = false}, SHIFT(700), + [2987] = {.count = 1, .reusable = false}, SHIFT(1013), + [2989] = {.count = 1, .reusable = true}, SHIFT(890), + [2991] = {.count = 1, .reusable = true}, SHIFT(703), + [2993] = {.count = 1, .reusable = true}, SHIFT(937), + [2995] = {.count = 1, .reusable = true}, SHIFT(43), + [2997] = {.count = 1, .reusable = true}, SHIFT(521), + [2999] = {.count = 1, .reusable = true}, SHIFT(49), + [3001] = {.count = 1, .reusable = true}, SHIFT(210), + [3003] = {.count = 1, .reusable = true}, SHIFT(213), + [3005] = {.count = 1, .reusable = true}, SHIFT(215), + [3007] = {.count = 1, .reusable = true}, SHIFT(609), + [3009] = {.count = 1, .reusable = true}, SHIFT(977), + [3011] = {.count = 1, .reusable = true}, SHIFT(695), + [3013] = {.count = 1, .reusable = false}, SHIFT(385), + [3015] = {.count = 1, .reusable = true}, SHIFT(672), + [3017] = {.count = 1, .reusable = true}, SHIFT(711), + [3019] = {.count = 1, .reusable = true}, SHIFT(244), + [3021] = {.count = 1, .reusable = true}, SHIFT(624), + [3023] = {.count = 1, .reusable = true}, SHIFT(623), + [3025] = {.count = 1, .reusable = true}, SHIFT(687), + [3027] = {.count = 1, .reusable = true}, SHIFT(295), + [3029] = {.count = 1, .reusable = true}, SHIFT(329), + [3031] = {.count = 1, .reusable = true}, SHIFT(622), + [3033] = {.count = 1, .reusable = false}, SHIFT(382), + [3035] = {.count = 1, .reusable = true}, SHIFT(392), + [3037] = {.count = 1, .reusable = true}, SHIFT(674), + [3039] = {.count = 1, .reusable = true}, SHIFT(314), + [3041] = {.count = 1, .reusable = true}, SHIFT(313), + [3043] = {.count = 1, .reusable = true}, SHIFT(706), + [3045] = {.count = 1, .reusable = true}, SHIFT(288), + [3047] = {.count = 1, .reusable = true}, SHIFT(416), + [3049] = {.count = 1, .reusable = true}, SHIFT(235), + [3051] = {.count = 1, .reusable = true}, SHIFT(626), + [3053] = {.count = 1, .reusable = true}, SHIFT(347), + [3055] = {.count = 1, .reusable = true}, SHIFT(621), + [3057] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 4, .production_id = 50), + [3059] = {.count = 1, .reusable = true}, SHIFT(173), + [3061] = {.count = 1, .reusable = true}, SHIFT(701), + [3063] = {.count = 1, .reusable = true}, SHIFT(258), + [3065] = {.count = 1, .reusable = true}, SHIFT(620), + [3067] = {.count = 1, .reusable = true}, SHIFT(325), + [3069] = {.count = 1, .reusable = true}, SHIFT(337), + [3071] = {.count = 1, .reusable = true}, SHIFT(147), + [3073] = {.count = 1, .reusable = true}, SHIFT(340), + [3075] = {.count = 1, .reusable = true}, SHIFT(149), + [3077] = {.count = 1, .reusable = true}, SHIFT(136), + [3079] = {.count = 1, .reusable = true}, SHIFT(302), + [3081] = {.count = 1, .reusable = true}, SHIFT(655), + [3083] = {.count = 1, .reusable = true}, SHIFT(300), + [3085] = {.count = 1, .reusable = true}, SHIFT(666), + [3087] = {.count = 1, .reusable = true}, SHIFT(665), + [3089] = {.count = 1, .reusable = true}, SHIFT(508), + [3091] = {.count = 1, .reusable = true}, SHIFT(299), + [3093] = {.count = 1, .reusable = true}, SHIFT(679), + [3095] = {.count = 1, .reusable = true}, SHIFT(685), + [3097] = {.count = 1, .reusable = true}, SHIFT(688), + [3099] = {.count = 1, .reusable = true}, SHIFT(702), + [3101] = {.count = 1, .reusable = false}, SHIFT(11), + [3103] = {.count = 1, .reusable = true}, SHIFT(14), + [3105] = {.count = 1, .reusable = true}, SHIFT(63), + [3107] = {.count = 1, .reusable = true}, ACCEPT_INPUT(), + [3109] = {.count = 1, .reusable = true}, SHIFT(1095), + [3111] = {.count = 1, .reusable = true}, SHIFT(736), + [3113] = {.count = 1, .reusable = true}, SHIFT(297), + [3115] = {.count = 1, .reusable = true}, SHIFT(303), + [3117] = {.count = 1, .reusable = true}, SHIFT(691), + [3119] = {.count = 1, .reusable = false}, SHIFT(374), + [3121] = {.count = 1, .reusable = true}, SHIFT(379), + [3123] = {.count = 1, .reusable = true}, SHIFT(689), + [3125] = {.count = 1, .reusable = true}, SHIFT(1005), + [3127] = {.count = 1, .reusable = true}, SHIFT(283), + [3129] = {.count = 1, .reusable = true}, SHIFT(306), [3131] = {.count = 1, .reusable = true}, SHIFT(270), - [3133] = {.count = 1, .reusable = true}, SHIFT(269), - [3135] = {.count = 1, .reusable = true}, SHIFT(628), - [3137] = {.count = 1, .reusable = true}, SHIFT(888), - [3139] = {.count = 1, .reusable = false}, SHIFT(6), - [3141] = {.count = 1, .reusable = true}, SHIFT(7), - [3143] = {.count = 1, .reusable = true}, SHIFT(626), - [3145] = {.count = 1, .reusable = true}, SHIFT(232), - [3147] = {.count = 1, .reusable = true}, SHIFT(66), - [3149] = {.count = 1, .reusable = true}, SHIFT(1055), - [3151] = {.count = 1, .reusable = true}, SHIFT(631), - [3153] = {.count = 1, .reusable = true}, SHIFT(697), - [3155] = {.count = 1, .reusable = true}, SHIFT(698), - [3157] = {.count = 1, .reusable = false}, SHIFT(379), - [3159] = {.count = 1, .reusable = true}, SHIFT(369), - [3161] = {.count = 1, .reusable = true}, SHIFT(136), - [3163] = {.count = 1, .reusable = true}, SHIFT(58), - [3165] = {.count = 1, .reusable = true}, SHIFT(358), - [3167] = {.count = 1, .reusable = true}, SHIFT(357), - [3169] = {.count = 1, .reusable = true}, SHIFT(354), - [3171] = {.count = 1, .reusable = true}, SHIFT(63), - [3173] = {.count = 1, .reusable = true}, SHIFT(873), - [3175] = {.count = 1, .reusable = false}, SHIFT(17), - [3177] = {.count = 1, .reusable = true}, SHIFT(14), - [3179] = {.count = 1, .reusable = true}, SHIFT(705), - [3181] = {.count = 1, .reusable = true}, SHIFT(741), - [3183] = {.count = 1, .reusable = true}, SHIFT(324), - [3185] = {.count = 1, .reusable = true}, SHIFT(1021), - [3187] = {.count = 1, .reusable = true}, SHIFT(317), - [3189] = {.count = 1, .reusable = true}, SHIFT(308), - [3191] = {.count = 1, .reusable = true}, SHIFT(293), - [3193] = {.count = 1, .reusable = true}, SHIFT(454), - [3195] = {.count = 1, .reusable = true}, SHIFT(301), - [3197] = {.count = 1, .reusable = true}, SHIFT(884), - [3199] = {.count = 1, .reusable = true}, SHIFT(895), - [3201] = {.count = 1, .reusable = true}, SHIFT(902), - [3203] = {.count = 1, .reusable = true}, SHIFT(967), - [3205] = {.count = 1, .reusable = true}, SHIFT(316), - [3207] = {.count = 1, .reusable = true}, SHIFT(319), - [3209] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 34), - [3211] = {.count = 1, .reusable = true}, SHIFT(320), - [3213] = {.count = 1, .reusable = true}, SHIFT(949), - [3215] = {.count = 1, .reusable = true}, SHIFT(951), - [3217] = {.count = 1, .reusable = true}, SHIFT(268), - [3219] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 50), - [3221] = {.count = 1, .reusable = true}, SHIFT(959), - [3223] = {.count = 1, .reusable = true}, SHIFT(265), - [3225] = {.count = 1, .reusable = true}, SHIFT(54), - [3227] = {.count = 1, .reusable = true}, SHIFT(9), + [3133] = {.count = 1, .reusable = true}, SHIFT(284), + [3135] = {.count = 1, .reusable = true}, SHIFT(863), + [3137] = {.count = 1, .reusable = false}, SHIFT(5), + [3139] = {.count = 1, .reusable = true}, SHIFT(6), + [3141] = {.count = 1, .reusable = true}, SHIFT(351), + [3143] = {.count = 1, .reusable = true}, SHIFT(169), + [3145] = {.count = 1, .reusable = true}, SHIFT(65), + [3147] = {.count = 1, .reusable = true}, SHIFT(1144), + [3149] = {.count = 1, .reusable = true}, SHIFT(683), + [3151] = {.count = 1, .reusable = true}, SHIFT(675), + [3153] = {.count = 1, .reusable = true}, SHIFT(704), + [3155] = {.count = 1, .reusable = false}, SHIFT(384), + [3157] = {.count = 1, .reusable = true}, SHIFT(386), + [3159] = {.count = 1, .reusable = false}, SHIFT(12), + [3161] = {.count = 1, .reusable = true}, SHIFT(349), + [3163] = {.count = 1, .reusable = true}, SHIFT(55), + [3165] = {.count = 1, .reusable = true}, SHIFT(180), + [3167] = {.count = 1, .reusable = true}, SHIFT(421), + [3169] = {.count = 1, .reusable = true}, SHIFT(181), + [3171] = {.count = 1, .reusable = true}, SHIFT(902), + [3173] = {.count = 1, .reusable = false}, SHIFT(13), + [3175] = {.count = 1, .reusable = true}, SHIFT(17), + [3177] = {.count = 1, .reusable = true}, SHIFT(697), + [3179] = {.count = 1, .reusable = true}, SHIFT(182), + [3181] = {.count = 1, .reusable = true}, SHIFT(335), + [3183] = {.count = 1, .reusable = true}, SHIFT(1020), + [3185] = {.count = 1, .reusable = true}, SHIFT(322), + [3187] = {.count = 1, .reusable = true}, SHIFT(183), + [3189] = {.count = 1, .reusable = true}, SHIFT(191), + [3191] = {.count = 1, .reusable = true}, SHIFT(316), + [3193] = {.count = 1, .reusable = true}, SHIFT(319), + [3195] = {.count = 1, .reusable = true}, SHIFT(320), + [3197] = {.count = 1, .reusable = true}, SHIFT(883), + [3199] = {.count = 1, .reusable = true}, SHIFT(878), + [3201] = {.count = 1, .reusable = true}, SHIFT(875), + [3203] = {.count = 1, .reusable = true}, SHIFT(237), + [3205] = {.count = 1, .reusable = true}, SHIFT(965), + [3207] = {.count = 1, .reusable = true}, SHIFT(231), + [3209] = {.count = 1, .reusable = true}, SHIFT(188), + [3211] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 34), + [3213] = {.count = 1, .reusable = true}, SHIFT(151), + [3215] = {.count = 1, .reusable = true}, SHIFT(960), + [3217] = {.count = 1, .reusable = true}, SHIFT(988), + [3219] = {.count = 1, .reusable = true}, SHIFT(48), + [3221] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 50), + [3223] = {.count = 1, .reusable = true}, SHIFT(954), + [3225] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 3, .production_id = 34), + [3227] = {.count = 1, .reusable = true}, SHIFT(16), [3229] = {.count = 1, .reusable = true}, SHIFT(67), - [3231] = {.count = 1, .reusable = false}, SHIFT(19), - [3233] = {.count = 1, .reusable = true}, SHIFT(64), - [3235] = {.count = 1, .reusable = true}, SHIFT(858), - [3237] = {.count = 1, .reusable = true}, SHIFT(65), + [3231] = {.count = 1, .reusable = false}, SHIFT(15), + [3233] = {.count = 1, .reusable = true}, SHIFT(66), + [3235] = {.count = 1, .reusable = true}, SHIFT(862), + [3237] = {.count = 1, .reusable = true}, SHIFT(64), }; #ifdef _WIN32 diff --git a/test/corpus/expressions.txt b/test/corpus/expressions.txt index c20ecac..2d871e2 100644 --- a/test/corpus/expressions.txt +++ b/test/corpus/expressions.txt @@ -118,6 +118,9 @@ int main() { "b" "c" "d"; "\"hi\""; L"bonjour"; + u"guten morgen"; + U"buenos dias"; + u8"buongiorno"; } --- @@ -130,6 +133,9 @@ int main() { (expression_statement (string_literal)) (expression_statement (concatenated_string (string_literal) (string_literal) (string_literal))) (expression_statement (string_literal (escape_sequence) (escape_sequence))) + (expression_statement (string_literal)) + (expression_statement (string_literal)) + (expression_statement (string_literal)) (expression_statement (string_literal))))) ============================================ @@ -142,6 +148,9 @@ int main() { '\t'; '\''; L'b'; + u'c'; + U'\xa1'; + u8'\x1A'; } --- @@ -155,7 +164,10 @@ int main() { (expression_statement (char_literal (escape_sequence))) (expression_statement (char_literal (escape_sequence))) (expression_statement (char_literal (escape_sequence))) - (expression_statement (char_literal))))) + (expression_statement (char_literal)) + (expression_statement (char_literal)) + (expression_statement (char_literal (escape_sequence))) + (expression_statement (char_literal (escape_sequence)))))) ============================================ Field access